00001 /* 00002 This is commands_fwd.h 00003 00004 Copyright (C) 2004,2005 Fokko du Cloux 00005 part of the Atlas of Reductive Lie Groups 00006 00007 See file main.cpp for full copyright notice 00008 */ 00009 00010 #ifndef COMMANDS_FWD_H /* guard against multiple inclusions */ 00011 #define COMMANDS_FWD_H 00012 00013 #include <map> 00014 00015 /******** forward type declarations *****************************************/ 00016 00017 namespace atlas { 00018 00019 namespace commands { 00020 00021 struct Command; 00022 class CommandMode; 00023 class StrCmp; 00024 00025 typedef std::map<const char*,const char*, StrCmp> TagDict; 00026 00027 struct EntryError{}; 00028 00029 } 00030 00031 } 00032 00033 #endif
1.3.9.1