Stxxl  1.3.2
root_node.h
1 /***************************************************************************
2  * include/stxxl/bits/containers/btree/root_node.h
3  *
4  * Part of the STXXL. See http://stxxl.sourceforge.net
5  *
6  * Copyright (C) 2006 Roman Dementiev <[email protected]>
7  *
8  * Distributed under the Boost Software License, Version 1.0.
9  * (See accompanying file LICENSE_1_0.txt or copy at
10  * http://www.boost.org/LICENSE_1_0.txt)
11  **************************************************************************/
12 
13 #ifndef STXXL_CONTAINERS_BTREE__ROOT_NODE_H
14 #define STXXL_CONTAINERS_BTREE__ROOT_NODE_H
15 
16 #include <stxxl/bits/namespace.h>
17 
18 
19 __STXXL_BEGIN_NAMESPACE
20 
21 namespace btree
22 {
23  template <class KeyType, class BIDType>
24  class root_node
25  {
26  // a place for a future custom root node tree implementation
27  };
28 }
29 
30 __STXXL_END_NAMESPACE
31 
32 #endif /* STXXL_CONTAINERS_BTREE__ROOT_NODE_H */