issue#11: cds: changed __CDS_ guard prefix to CDSLIB_ for all .h files
[libcds.git] / tests / test-hdr / tree / hdr_tree_reg.cpp
1 //$$CDS-header$$
2
3 #include "tree/hdr_intrusive_bintree.h"
4 #include "tree/hdr_intrusive_ellen_bintree_pool_rcu.h"
5 #include "tree/hdr_intrusive_ellen_bintree_pool_hp.h"
6 #include "tree/hdr_intrusive_ellen_bintree_pool_dhp.h"
7
8 #include "tree/hdr_ellenbintree_set.h"
9 #include "tree/hdr_ellenbintree_map.h"
10
11 namespace tree {
12     namespace ellen_bintree_rcu {
13         internal_node_pool_type s_InternalNodePool( 1024 * 8 );
14         update_desc_pool_type   s_UpdateDescPool;
15     }
16     namespace ellen_bintree_hp {
17         internal_node_pool_type s_InternalNodePool( 1024 * 8 );
18         update_desc_pool_type   s_UpdateDescPool;
19     }
20     namespace ellen_bintree_dhp {
21         internal_node_pool_type s_InternalNodePool( 1024 * 8 );
22         update_desc_pool_type   s_UpdateDescPool;
23     }
24 }
25
26
27 CPPUNIT_TEST_SUITE_REGISTRATION_(tree::IntrusiveBinTreeHdrTest, s_IntrusiveBinTreeHdrTest);
28 CPPUNIT_TEST_SUITE_REGISTRATION_(tree::EllenBinTreeSetHdrTest, s_EllenBinTreeSetHdrTest);
29 CPPUNIT_TEST_SUITE_REGISTRATION_(tree::EllenBinTreeMapHdrTest, s_EllenBinTreeMapHdrTest);