mirror of https://github.com/PrimeDecomp/prime.git
16 lines
197 B
C++
16 lines
197 B
C++
|
#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
|