is_unit.hpp 879 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_IS_UNIT_HPP
  11. #define BOOST_UNITS_IS_UNIT_HPP
  12. ///
  13. /// \file
  14. /// \brief Check that a type is a unit.
  15. ///
  16. #include <boost/mpl/bool.hpp>
  17. #include <boost/units/units_fwd.hpp>
  18. namespace boost {
  19. namespace units {
  20. /// Check that a type is a unit.
  21. template<class T>
  22. struct is_unit :
  23. public mpl::false_
  24. { };
  25. template<class Dim,class System>
  26. struct is_unit< unit<Dim,System> > :
  27. public mpl::true_
  28. { };
  29. } // namespace units
  30. } // namespace boost
  31. #endif // BOOST_UNITS_IS_UNIT_HPP