mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-12 01:39:07 +00:00
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
|