is_dimension_list.hpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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_DIMENSION_LIST_HPP
  11. #define BOOST_UNITS_IS_DIMENSION_LIST_HPP
  12. ///
  13. /// \file
  14. /// \brief Check that a type is a valid dimension list.
  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 valid dimension list.
  21. template<typename Seq>
  22. struct is_dimension_list :
  23. public mpl::false_
  24. { };
  25. template<typename Item, typename Next>
  26. struct is_dimension_list<list<Item, Next> > :
  27. public mpl::true_
  28. { };
  29. template<>
  30. struct is_dimension_list<dimensionless_type> :
  31. public mpl::true_
  32. { };
  33. } // namespace units
  34. } // namespace boost
  35. #endif // BOOST_UNITS_IS_DIMENSION_LIST_HPP