1 /*-----------------------------------------------------------------------------+
2 Copyright (c) 2007-2011: Joachim Faulhaber
3 +------------------------------------------------------------------------------+
4    Distributed under the Boost Software License, Version 1.0.
5       (See accompanying file LICENCE.txt or copy at
6            http://www.boost.org/LICENSE_1_0.txt)
7 +-----------------------------------------------------------------------------*/
8 #ifndef BOOST_ICL_SET_HPP_JOFA_070519
9 #define BOOST_ICL_SET_HPP_JOFA_070519
10 
11 #include <boost/icl/impl_config.hpp>
12 
13 #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
14 #   include <boost/container/set.hpp>
15 #elif defined(ICL_USE_STD_IMPLEMENTATION)
16 #   include <set>
17 #else
18 #   include <set>
19 #endif
20 
21 #include <boost/icl/associative_element_container.hpp>
22 #include <boost/icl/functors.hpp>
23 
24 #endif // BOOST_ICL_SET_HPP_JOFA_070519
25 
26