12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef oFLAGWORD_HEADER
- #define oFLAGWORD_HEADER
- #include "../classes/stdafx.hpp"
- class __declspec (dllexport) oflagword
- {
- public:
- oflagword ();
- oflagword (unsigned);
- virtual ~ oflagword ();
- unsigned getword () const;
- unsigned getbits (unsigned bits) const;
- oflagword & setword (unsigned bits);
- oflagword & setbits (unsigned bits);
- oflagword & clearbits (unsigned bits);
- bool anyset (unsigned bits) const;
- bool allset (unsigned bits) const;
- bool anyclear (unsigned bits) const;
- bool allclear (unsigned bits) const;
- private:
- unsigned mbits;
- };
- #endif
|