bitmask.hpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // boost/detail/bitmask.hpp ------------------------------------------------//
  2. // Copyright Beman Dawes 2006
  3. // Distributed under the Boost Software License, Version 1.0
  4. // http://www.boost.org/LICENSE_1_0.txt
  5. // Usage: enum foo { a=1, b=2, c=4 };
  6. // BOOST_BITMASK( foo );
  7. //
  8. // void f( foo arg );
  9. // ...
  10. // f( a | c );
  11. #ifndef BOOST_BITMASK_HPP
  12. #define BOOST_BITMASK_HPP
  13. #include <boost/cstdint.hpp>
  14. #define BOOST_BITMASK(Bitmask) \
  15. \
  16. inline Bitmask operator| (Bitmask x , Bitmask y ) \
  17. { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
  18. | static_cast<boost::int_least32_t>(y)); } \
  19. \
  20. inline Bitmask operator& (Bitmask x , Bitmask y ) \
  21. { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
  22. & static_cast<boost::int_least32_t>(y)); } \
  23. \
  24. inline Bitmask operator^ (Bitmask x , Bitmask y ) \
  25. { return static_cast<Bitmask>( static_cast<boost::int_least32_t>(x) \
  26. ^ static_cast<boost::int_least32_t>(y)); } \
  27. \
  28. inline Bitmask operator~ (Bitmask x ) \
  29. { return static_cast<Bitmask>(~static_cast<boost::int_least32_t>(x)); } \
  30. \
  31. inline Bitmask & operator&=(Bitmask & x , Bitmask y) \
  32. { x = x & y ; return x ; } \
  33. \
  34. inline Bitmask & operator|=(Bitmask & x , Bitmask y) \
  35. { x = x | y ; return x ; } \
  36. \
  37. inline Bitmask & operator^=(Bitmask & x , Bitmask y) \
  38. { x = x ^ y ; return x ; }
  39. #endif // BOOST_BITMASK_HPP