atlas  0.6
commands_fwd.h
Go to the documentation of this file.
1 /*
2  This is commands_fwd.h
3 
4  Copyright (C) 2004,2005 Fokko du Cloux
5  part of the Atlas of Lie Groups and Representations
6 
7  For copyright and license information see the LICENSE file
8 */
9 
10 #ifndef COMMANDS_FWD_H /* guard against multiple inclusions */
11 #define COMMANDS_FWD_H
12 
13 #include <map>
14 
15 /******** forward type declarations *****************************************/
16 
17 namespace atlas {
18 
19 namespace commands {
20 
21  struct Command;
22  class CommandNode;
23  class CommandTree;
24  class StrCmp;
25 
26  typedef std::map<const char*,const char*, StrCmp> TagDict;
27 
28  struct EntryError{};
29 
30 }
31 
32 }
33 
34 #endif
std::map< const char *, const char *, StrCmp > TagDict
Definition: commands_fwd.h:24
Definition: commands.h:59
Definition: commands_fwd.h:28
Definition: Atlas.h:38