static_constant.hpp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Boost.Units - A C++ library for zero-overhead dimensional analysis and
  2. // unit/quantity manipulation and conversion
  3. //
  4. // Copyright (C) 2003-2008 Matthias Christian Schabel
  5. // Copyright (C) 2008 Steven Watanabe
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See
  8. // accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_UNITS_STATIC_CONSTANT_HPP
  11. #define BOOST_UNITS_STATIC_CONSTANT_HPP
  12. #include <boost/units/config.hpp>
  13. /// A convenience macro that allows definition of static
  14. /// constants in headers in an ODR-safe way.
  15. #define BOOST_UNITS_STATIC_CONSTANT(name, type) \
  16. template<bool b> \
  17. struct name##_instance_t \
  18. { \
  19. static const type instance; \
  20. }; \
  21. \
  22. namespace \
  23. { \
  24. static const type& name = name##_instance_t<true>::instance; \
  25. } \
  26. \
  27. template<bool b> \
  28. const type name##_instance_t<b>::instance
  29. /// A convenience macro for static constants with auto
  30. /// type deduction.
  31. #if BOOST_UNITS_HAS_TYPEOF
  32. #if BOOST_UNITS_HAS_BOOST_TYPEOF
  33. #define BOOST_UNITS_AUTO_STATIC_CONSTANT(name, value) \
  34. BOOST_TYPEOF_NESTED_TYPEDEF(name##_nested_t, value) \
  35. BOOST_UNITS_STATIC_CONSTANT(name, name##_nested_t::type) = (value)
  36. #elif BOOST_UNITS_HAS_MWERKS_TYPEOF
  37. #define BOOST_UNITS_AUTO_STATIC_CONSTANT(name, value) \
  38. BOOST_UNITS_STATIC_CONSTANT(name, __typeof__(value)) = (value)
  39. #elif BOOST_UNITS_HAS_GNU_TYPEOF
  40. #define BOOST_UNITS_AUTO_STATIC_CONSTANT(name, value) \
  41. BOOST_UNITS_STATIC_CONSTANT(name, typeof(value)) = (value)
  42. #endif // BOOST_UNITS_HAS_BOOST_TYPEOF
  43. #endif // BOOST_UNITS_HAS_TYPEOF
  44. #endif // BOOST_UNITS_STATIC_CONSTANT_HPP