Chris@16: /*-----------------------------------------------------------------------------+ Chris@16: Copyright (c) 2007-2010: Joachim Faulhaber Chris@16: +------------------------------------------------------------------------------+ Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENCE.txt or copy at Chris@16: http://www.boost.org/LICENSE_1_0.txt) Chris@16: +-----------------------------------------------------------------------------*/ Chris@16: #ifndef BOOST_ICL_DETAIL_STD_SET_HPP_JOFA_101007 Chris@16: #define BOOST_ICL_DETAIL_STD_SET_HPP_JOFA_101007 Chris@16: Chris@16: #include Chris@16: #include Chris@16: #include Chris@16: #include Chris@16: Chris@16: Chris@16: namespace boost{namespace icl Chris@16: { Chris@16: Chris@16: template Chris@16: struct is_set > Chris@16: { Chris@16: typedef is_set > type; Chris@16: BOOST_STATIC_CONSTANT(bool, value = true); Chris@16: }; Chris@16: Chris@16: Chris@16: template Chris@16: struct type_to_string > Chris@16: { Chris@16: static std::string apply() Chris@16: { return "set<"+ type_to_string::apply() +">"; } Chris@16: }; Chris@16: Chris@16: template Chris@16: struct type_to_string > > Chris@16: { Chris@16: static std::string apply() Chris@16: { return "set<"+ type_to_string::apply() +" g>"; } Chris@16: }; Chris@16: Chris@16: }} // namespace icl boost Chris@16: Chris@16: #endif // BOOST_ICL_DETAIL_STD_SET_HPP_JOFA_101007 Chris@16: