absorbs_identities.hpp 815 B

1234567891011121314151617181920212223
  1. /*-----------------------------------------------------------------------------+
  2. Copyright (c) 2008-2010: Joachim Faulhaber
  3. +------------------------------------------------------------------------------+
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENCE.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. +-----------------------------------------------------------------------------*/
  8. #ifndef BOOST_ICL_TYPE_TRAITS_ABSORBS_IDENTITIES_HPP_JOFA_081004
  9. #define BOOST_ICL_TYPE_TRAITS_ABSORBS_IDENTITIES_HPP_JOFA_081004
  10. namespace boost{ namespace icl
  11. {
  12. template <class Type> struct absorbs_identities
  13. {
  14. typedef absorbs_identities<Type> type;
  15. BOOST_STATIC_CONSTANT(bool, value = false);
  16. };
  17. }} // namespace boost icl
  18. #endif