File indexing completed on 2025-01-18 09:38:35
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef BOOST_INTRUSIVE_DETAIL_ALGO_TYPE_HPP
0014 #define BOOST_INTRUSIVE_DETAIL_ALGO_TYPE_HPP
0015
0016 #ifndef BOOST_CONFIG_HPP
0017 # include <boost/config.hpp>
0018 #endif
0019
0020 #if defined(BOOST_HAS_PRAGMA_ONCE)
0021 # pragma once
0022 #endif
0023
0024 namespace boost {
0025 namespace intrusive {
0026
0027 enum algo_types
0028 {
0029 CircularListAlgorithms,
0030 CircularSListAlgorithms,
0031 LinearSListAlgorithms,
0032 CommonSListAlgorithms,
0033 BsTreeAlgorithms,
0034 RbTreeAlgorithms,
0035 AvlTreeAlgorithms,
0036 SgTreeAlgorithms,
0037 SplayTreeAlgorithms,
0038 TreapAlgorithms,
0039 UnorderedAlgorithms,
0040 UnorderedCircularSlistAlgorithms,
0041 AnyAlgorithm
0042 };
0043
0044 template<algo_types AlgoType, class NodeTraits>
0045 struct get_algo;
0046
0047 template<algo_types AlgoType, class ValueTraits, class NodePtrCompare, class ExtraChecker>
0048 struct get_node_checker;
0049
0050 }
0051 }
0052
0053 #endif