oflagword.cpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*====================================================================*
  2. *
  3. * oflagword.cpp - oflagword class definition;
  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_SOURCE
  14. #define oFLAGWORD_SOURCE
  15. /*====================================================================*
  16. * custom header files;
  17. *--------------------------------------------------------------------*/
  18. #include "../classes/oflagword.hpp"
  19. /*====================================================================*
  20. *
  21. * unsigned getword () const;
  22. *
  23. * return current flagword;
  24. *
  25. *--------------------------------------------------------------------*/
  26. unsigned oflagword::getword () const
  27. {
  28. return (this->mbits);
  29. }
  30. /*====================================================================*
  31. *
  32. * unsigned getbits (unsigned bits) const;
  33. *
  34. * return selected flagword bits;
  35. *
  36. *--------------------------------------------------------------------*/
  37. unsigned oflagword::getbits (unsigned bits) const
  38. {
  39. return (this->mbits & bits);
  40. }
  41. /*====================================================================*
  42. *
  43. * oflagword & setword (unsigned bits);
  44. *
  45. * replace the current flagword;
  46. *
  47. *--------------------------------------------------------------------*/
  48. oflagword & oflagword::setword (unsigned bits)
  49. {
  50. this->mbits = bits;
  51. return (*this);
  52. }
  53. /*====================================================================*
  54. *
  55. * oflagword & setbits (unsigned bits);
  56. *
  57. * set the specified flagword bits;
  58. *
  59. *--------------------------------------------------------------------*/
  60. oflagword & oflagword::setbits (unsigned bits)
  61. {
  62. this->mbits |= bits;
  63. return (*this);
  64. }
  65. /*====================================================================*
  66. *
  67. * oflagword & clearbits (unsigned bits);
  68. *
  69. * clear the specified flagword bits;
  70. *
  71. *--------------------------------------------------------------------*/
  72. oflagword & oflagword::clearbits (unsigned bits)
  73. {
  74. this->mbits &= ~bits;
  75. return (*this);
  76. }
  77. /*====================================================================*
  78. *
  79. * bool anyset (unsigned bits) const;
  80. *
  81. *--------------------------------------------------------------------*/
  82. bool oflagword::anyset (unsigned bits) const
  83. {
  84. return ((this->mbits & bits) != 0);
  85. }
  86. /*====================================================================*
  87. *
  88. * bool allset (unsigned bits) const;
  89. *
  90. *--------------------------------------------------------------------*/
  91. bool oflagword::allset (unsigned bits) const
  92. {
  93. return ((this->mbits & bits) == bits);
  94. }
  95. /*====================================================================*
  96. *
  97. * bool anyclear (unsigned bits) const;
  98. *
  99. *--------------------------------------------------------------------*/
  100. bool oflagword::anyclear (unsigned bits) const
  101. {
  102. return ((this->mbits & bits) != bits);
  103. }
  104. /*====================================================================*
  105. *
  106. * bool allclear (unsigned bits) const;
  107. *
  108. *--------------------------------------------------------------------*/
  109. bool oflagword::allclear (unsigned bits) const
  110. {
  111. return ((this->mbits & bits) == 0);
  112. }
  113. /*====================================================================*
  114. *
  115. * oflagword (unsigned bits);
  116. *
  117. *--------------------------------------------------------------------*/
  118. oflagword::oflagword (unsigned bits)
  119. {
  120. this->mbits = bits;
  121. return;
  122. }
  123. /*====================================================================*
  124. *
  125. * oflagword ();
  126. *
  127. *--------------------------------------------------------------------*/
  128. oflagword::oflagword ()
  129. {
  130. this->mbits = 0;
  131. return;
  132. }
  133. /*====================================================================*
  134. *
  135. * ~oflagword ();
  136. *
  137. *--------------------------------------------------------------------*/
  138. oflagword::~oflagword ()
  139. {
  140. return;
  141. }
  142. /*====================================================================*
  143. * end definition;
  144. *--------------------------------------------------------------------*/
  145. #endif