Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:47:40

0001 // Copyright 2005 Daniel Wallin.
0002 // Copyright 2005 Joel de Guzman.
0003 //
0004 // Use, modification and distribution is subject to the Boost Software
0005 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt)
0007 //
0008 // Modeled after range_ex, Copyright 2004 Eric Niebler
0009 ///////////////////////////////////////////////////////////////////////////////
0010 //
0011 // is_std_set.hpp
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