/*-----------------------------------------------------------------------------+ Copyright (c) 2008-2009: Joachim Faulhaber +------------------------------------------------------------------------------+ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENCE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +-----------------------------------------------------------------------------*/ #ifndef BOOST_ICL_TYPE_TRAITS_ELEMENT_TYPE_OF_HPP_JOFA_100902 #define BOOST_ICL_TYPE_TRAITS_ELEMENT_TYPE_OF_HPP_JOFA_100902 #include #include #include namespace boost{ namespace icl { namespace detail { BOOST_MPL_HAS_XXX_TRAIT_DEF(element_type) BOOST_MPL_HAS_XXX_TRAIT_DEF(value_type) BOOST_MPL_HAS_XXX_TRAIT_DEF(key_type) } //-------------------------------------------------------------------------- template struct has_element_type : mpl::bool_::value> {}; template struct get_element_type; template struct get_element_type { typedef no_type type; }; template struct get_element_type { typedef typename Type::element_type type; }; template struct element_type_of { typedef typename get_element_type::value>::type type; }; //-------------------------------------------------------------------------- template struct has_value_type : mpl::bool_::value> {}; template struct get_value_type; template struct get_value_type { typedef no_type type; }; template struct get_value_type { typedef typename Type::value_type type; }; template struct value_type_of { typedef typename get_value_type::value>::type type; }; //-------------------------------------------------------------------------- template struct has_key_type : mpl::bool_::value> {}; template struct get_key_type; template struct get_key_type { typedef no_type type; }; template struct get_key_type { typedef typename Type::key_type type; }; template struct key_type_of { typedef typename get_key_type::value>::type type; }; }} // namespace boost icl #endif