rasdaman complete source
server/template_inst.hh
Go to the documentation of this file.
1 /*
2 * This file is part of rasdaman community.
3 *
4 * Rasdaman community is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * Rasdaman community is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with rasdaman community. If not, see <http://www.gnu.org/licenses/>.
16 *
17 * Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
18 rasdaman GmbH.
19 *
20 * For more information please see <http://www.rasdaman.org>
21 * or contact Peter Baumann via <baumann@rasdaman.com>.
22 */
23 //for rb_tree, select1st
24 #include <ext/functional>
25 #include <ext/rb_tree>
26 #include <vector>
27 #include <utility>
28 #include <memory>
29 
30 #if(__GNUC__==2 &&__GNUC_MINOR__==95)
31 using std::rb_tree;
32 using std::select1st;
33 #else
34 using __gnu_cxx::rb_tree;
35 using __gnu_cxx::select1st;
36 #endif
37 
38 using std::vector;
39 using std::pair;
40 
41 // commented by Constantin Jucovschi (gcc 3.4+ no longer supports __default_alloc_template)
42 //using std::__default_alloc_template;
43 using std::fill_n;
44 
45 #include "qlparser/symtab.hh"
46 
47 #include "raslib/attribute.hh"
48 #include "raslib/itertype.hh"
49 #include "raslib/dlist.hh"
50 
51 #include "tilemgr/tile.hh"
52 
53 #include "indexmgr/keyobject.hh"
54 
55 #include "reladminif/dbref.hh"
57 
58 #include "relblobif/blobtile.hh"
59 #include "relblobif/dbtile.hh"
60 #include "relblobif/inlinetile.hh"
61 
63 #include "relcatalogif/settype.hh"
65 #include "relcatalogif/mddtype.hh"
68 
69 #include "relindexif/dbtcindex.hh"
70 #include "relindexif/hierindex.hh"
72 
73 #include "relmddif/dbmddobj.hh"
74 #include "relmddif/dbmddset.hh"
75 
77 
78 template class SymbolTable<int>;
79 
80 template class r_IterType<r_Attribute>;
81 
82 template class DBRef<DBHierIndex>;
83 template class DBRef<DBRCIndexDS>;
84 template class DBRef<DBTCIndex>;
85 template class DBRef<BLOBTile>;
86 template class DBRef<DBTile>;
87 template class DBRef<InlineTile>;
88 template class DBRef<DBMDDSet>;
89 template class DBRef<DBMinterval>;
90 template class DBRef<DBStorageLayout>;
91 template bool operator< (const DBRef<DBMDDObj>&, const DBRef<DBMDDObj>&);
92 
93 //template TypeIterator<StructType>;
94 //template TypeIterator<SetType>;
95 template class TypeIterator<MDDType>;
96 template class DBRef<DBMDDObj>;
97 template class DBRef<DBObject>;
98 
99 template class DBObjectIdIterator<DBMDDObj>;
100 template class DBObjectIterator<DBMDDObj>;
101 template class DBObjectIterator<DBMDDSet>;
102 template class DBObjectIterator<StructType>;
103 template class DBObjectIterator<SetType>;
104 template class DBRef<StructType>;
105 template class DBRef<SetType>;
106 template class DBRef<MDDType>;
107 
108 template std::ostream& operator<< (const vector<KeyObject>&, std::ostream&);
109 template std::ostream& operator<< (std::ostream &, const vector<KeyObject>&);
110 template std::ostream& operator << (std::ostream& os, const std::vector<double>& list);
111 template std::ostream& operator << (std::ostream& os, const std::vector<r_Minterval>& list);
112 
113 template class rb_tree<OId, pair<OId const, DBMDDObj *>, select1st<pair<OId const, DBMDDObj *> >, less<OId> >;
114 template class rb_tree<OId, pair<OId const, DBMinterval *>, select1st<pair<OId const, DBMinterval *> >, less<OId> >;
115 template class rb_tree<OId, pair<OId const, DBRef<DBMDDObj> >, select1st<pair<OId const, DBRef<DBMDDObj> > >, less<OId> >;
116 template class rb_tree<OId, pair<OId const, DBMDDSet *>, select1st<pair<OId const, DBMDDSet *> >, less<OId> >;
117 template class rb_tree<OId, pair<OId const, MDDType *>, select1st<pair<OId const, MDDType *> >, less<OId> >;
118 template class rb_tree<OId, pair<OId const, SetType *>, select1st<pair<OId const, SetType *> >, less<OId> >;
119 template class rb_tree<OId, pair<OId const, StructType *>, select1st<pair<OId const, StructType *> >, less<OId> >;
120 template class rb_tree<long, pair<long const, BLOBTile *>, select1st<pair<long const, BLOBTile *> >, less<long> >;
121 template class rb_tree<long, pair<long const, InlineTile *>, select1st<pair<long const, InlineTile *> >, less<long> >;
122 template class vector<BaseType const * >;
123 template class vector<OId >;
124 template class vector<Tile * >;
125 template class vector<Type * >;
126 template class vector<char * >;
127 template class vector<char >;
128 template class vector<r_Data_Format >;
129 template class vector<unsigned int >;
130 
131 template class Tile ** fill_n<Tile **, unsigned int, Tile *>(Tile **, unsigned int, Tile * const &);
132 
Definition: dbobject.hh:29
Definition: dbobjectiterator.hh:26
Definition: itertype.hh:44
template class Tile ** fill_n< Tile **, unsigned int, Tile * >(Tile **, unsigned int, Tile *const &)
Definition: tile.hh:80
Definition: dbobjectiditerator.hh:30