#ifndef BISON_STYLECSSPARSER_H # define BISON_STYLECSSPARSER_H #ifndef YYSTYPE typedef union { int tok ; /* command */ const std::string * string ; /* string : id, ... */ StyleConstant flag ; StyleConstants *styleconstants; KeyList *keylist; } yystype; # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif # define BOLD 257 # define ITALICS 258 # define UNDERLINE 259 # define FIXED 260 # define NOTFIXED 261 # define NOREF 262 # define KEY 263 # define COLOR 264 # define BG_COLOR 265 # define STRINGDEF 266 # define BG_STRINGDEF 267 extern YYSTYPE stylecsssc_lval; #endif /* not BISON_STYLECSSPARSER_H */