set.hpp 873 B

12345678910111213141516171819202122232425
  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. #include <boost/icl/impl_config.hpp>
  11. #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
  12. # include <boost/container/set.hpp>
  13. #elif defined(ICL_USE_STD_IMPLEMENTATION)
  14. # include <set>
  15. #else
  16. # include <set>
  17. #endif
  18. #include <boost/icl/associative_element_container.hpp>
  19. #include <boost/icl/functors.hpp>
  20. #endif // BOOST_ICL_SET_HPP_JOFA_070519