Quote:
> If you use bitset class what do you have to include to use it. Is it SDK,
> or iostream or what?
#include <bitset> // and I meant no ".h"
If you don't like writing "std::bitset" all over the place, you can also
add:
using std::bitset;
--
Jay