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 // has_remove.hpp
0012 //
0013 /////////////////////////////////////////////////////////////////////////////
0014 
0015 #ifndef BOOST_PHOENIX_HAS_REMOVE_EN_14_12_2004
0016 #define BOOST_PHOENIX_HAS_REMOVE_EN_14_12_2004
0017 
0018 #include "./is_std_list.hpp"
0019 
0020 namespace boost
0021 {
0022     // Specialize this for user-defined types
0023     template<typename T>
0024     struct has_remove
0025         : is_std_list<T>
0026     {
0027     };
0028 }
0029 
0030 #endif