00001 #ifndef BISON_PARSER_TAB_H
00002 # define BISON_PARSER_TAB_H
00003
00004 #ifndef YYSTYPE
00005 typedef union{
00006 string *y_str;
00007 double y_dbl;
00008 bool y_bol;
00009 int4 y_int;
00010 int* y_iar;
00011 TObjectID* y_oid;
00012 TPoint* y_pnt;
00013 TDataPackageList* y_dst;
00014 } yystype;
00015 # define YYSTYPE yystype
00016 #endif
00017 # define YINTEGER 257
00018 # define YDOUBLE 258
00019 # define YSTRING 259
00020 # define YBOOLEAN 260
00021 # define LBRACE 261
00022 # define RBRACE 262
00023 # define LBRACKET 263
00024 # define RBRACKET 264
00025 # define LPARE 265
00026 # define RPARE 266
00027 # define ASSIGN 267
00028 # define COMMA 268
00029 # define SEMICOLON 269
00030 # define IDOPTTEMP 270
00031 # define INT2SPEC 271
00032 # define VEC3DSPEC 272
00033
00034
00035 extern YYSTYPE yylval;
00036
00037 #endif