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_list.hpp
0012 //
0013 /////////////////////////////////////////////////////////////////////////////
0014 
0015 #ifndef BOOST_PHOENIX_IS_STD_LIST_EN_16_12_2004
0016 #define BOOST_PHOENIX_IS_STD_LIST_EN_16_12_2004
0017 
0018 #include <boost/mpl/bool.hpp>
0019 #include <list>
0020 
0021 namespace boost
0022 {
0023     template<class T>
0024     struct is_std_list
0025         : boost::mpl::false_
0026     {};
0027 
0028     template<
0029         class Ty
0030       , class Alloc
0031     >
0032     struct is_std_list< ::std::list<Ty,Alloc> >
0033         : boost::mpl::true_
0034     {};
0035 }
0036 
0037 #endif