Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:35

0001 /////////////////////////////////////////////////////////////////////////////
0002 //
0003 // (C) Copyright Ion Gaztanaga  2014-2014
0004 //
0005 // Distributed under the Boost Software License, Version 1.0.
0006 //    (See accompanying file LICENSE_1_0.txt or copy at
0007 //          http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // See http://www.boost.org/libs/intrusive for documentation.
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 } //namespace intrusive
0051 } //namespace boost
0052 
0053 #endif //BOOST_INTRUSIVE_DETAIL_ALGO_TYPE_HPP