ARB
dbitem_set.h
Go to the documentation of this file.
1 // ============================================================ //
2 // //
3 // File : dbitem_set.h //
4 // Purpose : //
5 // //
6 // Coded by Ralf Westram (coder@reallysoft.de) in June 2011 //
7 // Institute of Microbiology (Technical University Munich) //
8 // http://www.arb-home.de/ //
9 // //
10 // ============================================================ //
11 
12 #ifndef DBITEM_SET_H
13 #define DBITEM_SET_H
14 
15 #ifndef _GLIBCXX_SET
16 #include <set>
17 #endif
18 #ifndef ARBDB_BASE_H
19 #include "arbdb_base.h"
20 #endif
21 
22 typedef std::set<GBDATA*> DBItemSet;
23 typedef DBItemSet::const_iterator DBItemSetIter;
24 
25 #else
26 #error dbitem_set.h included twice
27 #endif // DBITEM_SET_H
std::set< GBDATA * > DBItemSet
Definition: dbitem_set.h:22
DBItemSet::const_iterator DBItemSetIter
Definition: dbitem_set.h:23