oflagword.hpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*====================================================================*
  2. *
  3. * oflagword.hpp - interface for the oflagword class;
  4. *
  5. * bitmapped flagword manager; this class can be inherited by other
  6. * classes that need a flagword;
  7. *
  8. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  9. * Copyright 2001-2006 by Charles Maier Associates;
  10. * Licensed under the Internet Software Consortium License;
  11. *
  12. *--------------------------------------------------------------------*/
  13. #ifndef oFLAGWORD_HEADER
  14. #define oFLAGWORD_HEADER
  15. /*====================================================================*
  16. * custom header files;
  17. *--------------------------------------------------------------------*/
  18. #include "../classes/stdafx.hpp"
  19. /*====================================================================*
  20. * class declaration;
  21. *--------------------------------------------------------------------*/
  22. class __declspec (dllexport) oflagword
  23. {
  24. public:
  25. oflagword ();
  26. oflagword (unsigned);
  27. virtual ~ oflagword ();
  28. unsigned getword () const;
  29. unsigned getbits (unsigned bits) const;
  30. oflagword & setword (unsigned bits);
  31. oflagword & setbits (unsigned bits);
  32. oflagword & clearbits (unsigned bits);
  33. bool anyset (unsigned bits) const;
  34. bool allset (unsigned bits) const;
  35. bool anyclear (unsigned bits) const;
  36. bool allclear (unsigned bits) const;
  37. private:
  38. unsigned mbits;
  39. };
  40. /*====================================================================*
  41. * end declaration;
  42. *--------------------------------------------------------------------*/
  43. #endif