Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/icl/set.hpp @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:663ca0da4350 | 16:2665513ce2d3 |
---|---|
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 |