options.hpp 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2013-2013
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/container for documentation.
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. #ifndef BOOST_CONTAINER_OPTIONS_HPP
  13. #define BOOST_CONTAINER_OPTIONS_HPP
  14. #ifndef BOOST_CONFIG_HPP
  15. # include <boost/config.hpp>
  16. #endif
  17. #if defined(BOOST_HAS_PRAGMA_ONCE)
  18. # pragma once
  19. #endif
  20. #include <boost/container/detail/config_begin.hpp>
  21. #include <boost/container/container_fwd.hpp>
  22. #include <boost/intrusive/pack_options.hpp>
  23. namespace boost {
  24. namespace container {
  25. #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  26. template<tree_type_enum TreeType, bool OptimizeSize>
  27. struct tree_opt
  28. {
  29. static const boost::container::tree_type_enum tree_type = TreeType;
  30. static const bool optimize_size = OptimizeSize;
  31. };
  32. #endif //!defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  33. //!This option setter specifies the underlying tree type
  34. //!(red-black, AVL, Scapegoat or Splay) for ordered associative containers
  35. BOOST_INTRUSIVE_OPTION_CONSTANT(tree_type, tree_type_enum, TreeType, tree_type)
  36. //!This option setter specifies if node size is optimized
  37. //!storing rebalancing data masked into pointers for ordered associative containers
  38. BOOST_INTRUSIVE_OPTION_CONSTANT(optimize_size, bool, Enabled, optimize_size)
  39. //! Helper metafunction to combine options into a single type to be used
  40. //! by \c boost::container::set, \c boost::container::multiset
  41. //! \c boost::container::map and \c boost::container::multimap.
  42. //! Supported options are: \c boost::container::optimize_size and \c boost::container::tree_type
  43. #if defined(BOOST_CONTAINER_DOXYGEN_INVOKED) || defined(BOOST_CONTAINER_VARIADIC_TEMPLATES)
  44. template<class ...Options>
  45. #else
  46. template<class O1 = void, class O2 = void, class O3 = void, class O4 = void>
  47. #endif
  48. struct tree_assoc_options
  49. {
  50. /// @cond
  51. typedef typename ::boost::intrusive::pack_options
  52. < tree_assoc_defaults,
  53. #if !defined(BOOST_CONTAINER_VARIADIC_TEMPLATES)
  54. O1, O2, O3, O4
  55. #else
  56. Options...
  57. #endif
  58. >::type packed_options;
  59. typedef tree_opt<packed_options::tree_type, packed_options::optimize_size> implementation_defined;
  60. /// @endcond
  61. typedef implementation_defined type;
  62. };
  63. } //namespace container {
  64. } //namespace boost {
  65. #include <boost/container/detail/config_end.hpp>
  66. #endif //#ifndef BOOST_CONTAINER_OPTIONS_HPP