00001 /*************************************************************************** 00002 grammardefs.h - Definition of macros, types etc. concerning grammars. 00003 ------------------- 00004 begin : June 21 2002 00005 copyright : (C) 2003 by Vojtìch Toman 00006 email : vtoman@lit.cz 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00025 #ifndef GRAMMARDEFS_H 00026 #define GRAMMARDEFS_H 00027 00028 00029 #include "defs.h" 00030 #include "xmldefs.h" 00031 00032 00036 typedef XmlChar TerminalValue; 00037 00038 00044 enum SymbolType 00045 { 00047 Terminal, 00048 00050 Variable 00051 }; 00052 00053 00054 00055 #endif //GRAMMARDEFS_H 00056 00057 00058