Files

16 lines
197 B
C++
Raw Permalink Normal View History

2024-11-03 11:50:57 -08:00
#ifndef _CPFBITSET
#define _CPFBITSET
class CPFBitSet {
public:
void Clear();
void Add(int bit);
bool Test(int bit);
void Rmv(int bit);
private:
int mBits[16];
};
#endif // _CPFBITSET