1 : // $Id: InstantiationTest.cc 35 2007-04-27 11:26:33Z tb $
2 :
3 : /*
4 : * STX B+ Tree Template Classes v0.7
5 : * Copyright (C) 2007 Timo Bingmann
6 : *
7 : * This library is free software; you can redistribute it and/or modify it
8 : * under the terms of the GNU Lesser General Public License as published by the
9 : * Free Software Foundation; either version 2.1 of the License, or (at your
10 : * option) any later version.
11 : *
12 : * This library is distributed in the hope that it will be useful, but WITHOUT
13 : * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 : * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15 : * for more details.
16 : *
17 : * You should have received a copy of the GNU Lesser General Public License
18 : * along with this library; if not, write to the Free Software Foundation,
19 : * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 : */
21 :
22 : #include <stx/btree_map.h>
23 : #include <stx/btree_multimap.h>
24 : #include <stx/btree_set.h>
25 : #include <stx/btree_multiset.h>
26 :
27 : // forced instantiation
28 :
29 : template class stx::btree_set<unsigned int>;
30 : template class stx::btree_map<int, double>;
31 : template class stx::btree_multiset<int>;
32 2 : template class stx::btree_multimap<int, int>;
|