File indexing completed on 2025-01-18 09:47:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #if defined(_MSC_VER)
0016 # pragma once
0017 #endif
0018
0019 #ifndef BOOST_PHOENIX_IS_STD_SET_EN_16_12_2004
0020 #define BOOST_PHOENIX_IS_STD_SET_EN_16_12_2004
0021
0022 #include <boost/mpl/bool.hpp>
0023 #include <set>
0024
0025 namespace boost
0026 {
0027 template<class T>
0028 struct is_std_set
0029 : boost::mpl::false_
0030 {};
0031
0032 template<
0033 class Kty
0034 , class Pr
0035 , class Alloc
0036 >
0037 struct is_std_set< ::std::set<Kty,Pr,Alloc> >
0038 : boost::mpl::true_
0039 {};
0040
0041 template<class T>
0042 struct is_std_multiset
0043 : boost::mpl::false_
0044 {};
0045
0046 template<
0047 class Kty
0048 , class Pr
0049 , class Alloc
0050 >
0051 struct is_std_multiset< ::std::multiset<Kty,Pr,Alloc> >
0052 : boost::mpl::true_
0053 {};
0054 }
0055
0056 #endif