Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:43:59

0001 /*-----------------------------------------------------------------------------+
0002 Copyright (c) 2007-2011: Joachim Faulhaber
0003 +------------------------------------------------------------------------------+
0004    Distributed under the Boost Software License, Version 1.0.
0005       (See accompanying file LICENCE.txt or copy at
0006            http://www.boost.org/LICENSE_1_0.txt)
0007 +-----------------------------------------------------------------------------*/
0008 #ifndef BOOST_ICL_SET_HPP_JOFA_070519
0009 #define BOOST_ICL_SET_HPP_JOFA_070519
0010 
0011 #include <boost/icl/impl_config.hpp>
0012 
0013 #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
0014 #   include <boost/container/set.hpp>
0015 #elif defined(ICL_USE_STD_IMPLEMENTATION)
0016 #   include <set>
0017 #else 
0018 #   include <set>
0019 #endif
0020 
0021 #include <boost/icl/associative_element_container.hpp>
0022 #include <boost/icl/functors.hpp>
0023 
0024 #endif // BOOST_ICL_SET_HPP_JOFA_070519
0025