///////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2015-2015. // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/intrusive for documentation. // ///////////////////////////////////////////////////////////////////////////// #ifndef BOOST_INTRUSIVE_TEST_RB_TEST_COMMON_HPP #define BOOST_INTRUSIVE_TEST_RB_TEST_COMMON_HPP #include #include #include "bs_test_common.hpp" namespace boost { namespace intrusive { template struct rb_hooks { typedef set_base_hook > base_hook_type; typedef set_base_hook , void_pointer , tag , optimize_size > auto_base_hook_type; typedef set_member_hook , optimize_size > member_hook_type; typedef set_member_hook < link_mode , void_pointer > auto_member_hook_type; typedef nonhook_node_member< rbtree_node_traits, rbtree_algorithms > nonhook_node_member_type; }; } //namespace intrusive { } //namespace boost { #endif //BOOST_INTRUSIVE_TEST_RB_TEST_COMMON_HPP