Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DClassDef.h
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: DClassDef.h
4 // Created: Tue Oct 16 04:22:52 EDT 2012
5 // Creator: davidl (on Darwin harriet.local 11.4.2 i386)
6 //
7 
8 #ifndef _DClassDef_
9 #define _DClassDef_
10 
11 #include <map>
12 #include <set>
13 #include <string>
14 using namespace std;
15 
16 
17 class DClassDef{
18  public:
19  DClassDef();
20  virtual ~DClassDef();
21 
22  string name;
23  map<string, string> members;
24  set<string> include_types;
25  unsigned int depth;
26 
27  protected:
28 
29 
30  private:
31 
32 };
33 
34 #endif // _DClassDef_
35 
unsigned int depth
Definition: DClassDef.h:25
map< string, string > members
Definition: DClassDef.h:23
set< string > include_types
Definition: DClassDef.h:24
string name
Definition: DClassDef.h:22