1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// Copyright (c) 2006-2018 Maxim Khizhinsky
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef CDSLIB_CONTAINER_STRIPED_SET_BOOST_FLAT_SET_ADAPTER_H
#define CDSLIB_CONTAINER_STRIPED_SET_BOOST_FLAT_SET_ADAPTER_H
#include <boost/version.hpp>
#if BOOST_VERSION < 104800
# error "For boost::container::flat_set you must use boost 1.48 or above"
#endif
#include <cds/container/striped_set/adapter.h>
#include <boost/container/flat_set.hpp>
//#if CDS_COMPILER == CDS_COMPILER_MSVC && CDS_COMPILER_VERSION >= 1700
//# error "boost::container::flat_set is not compatible with MS VC++ 11"
//#endif
//@cond
namespace cds { namespace container {
namespace striped_set {
// Copy policy for boost::container::flat_set
template <typename T, typename Traits, typename Alloc>
struct copy_item_policy< boost::container::flat_set< T, Traits, Alloc > >
: public details::boost_set_copy_policies< boost::container::flat_set< T, Traits, Alloc > >::copy_item_policy
{};
// Swap policy is not defined for boost::container::flat_set
template <typename T, typename Traits, typename Alloc>
struct swap_item_policy< boost::container::flat_set< T, Traits, Alloc > >
: public details::boost_set_copy_policies< boost::container::flat_set< T, Traits, Alloc > >::swap_item_policy
{};
// Move policy for boost::container::flat_set
template <typename T, typename Traits, typename Alloc>
struct move_item_policy< boost::container::flat_set< T, Traits, Alloc > >
: public details::boost_set_copy_policies< boost::container::flat_set< T, Traits, Alloc > >::move_item_policy
{};
} // namespace striped_set
}} // namespace cds::container
namespace cds { namespace intrusive { namespace striped_set {
template <typename T, class Traits, class Alloc, typename... Options>
class adapt< boost::container::flat_set<T, Traits, Alloc>, Options... >
{
public:
typedef boost::container::flat_set<T, Traits, Alloc> container_type ; ///< underlying container type
typedef cds::container::striped_set::details::boost_set_adapter< container_type, Options... > type;
};
}}}
//@endcond
#endif // #ifndef CDSLIB_CONTAINER_STRIPED_SET_BOOST_FLAT_SET_ADAPTER_H
|