Eneboo - Documentación para desarrolladores
|
00001 #define CHAR_VAL 257 00002 #define INT_VAL 258 00003 #define DOUBLE_VAL 259 00004 #define STRING 260 00005 #define IDENTIFIER 261 00006 #define FRIEND 262 00007 #define TYPEDEF 263 00008 #define AUTO 264 00009 #define REGISTER 265 00010 #define STATIC 266 00011 #define EXTERN 267 00012 #define INLINE 268 00013 #define VIRTUAL 269 00014 #define CONST 270 00015 #define VOLATILE 271 00016 #define CHAR 272 00017 #define SHORT 273 00018 #define INT 274 00019 #define LONG 275 00020 #define SIGNED 276 00021 #define UNSIGNED 277 00022 #define FLOAT 278 00023 #define DOUBLE 279 00024 #define VOID 280 00025 #define ENUM 281 00026 #define CLASS 282 00027 #define STRUCT 283 00028 #define UNION 284 00029 #define ASM 285 00030 #define PRIVATE 286 00031 #define PROTECTED 287 00032 #define PUBLIC 288 00033 #define OPERATOR 289 00034 #define DBL_COLON 290 00035 #define TRIPLE_DOT 291 00036 #define TEMPLATE 292 00037 #define NAMESPACE 293 00038 #define USING 294 00039 #define MUTABLE 295 00040 #define THROW 296 00041 #define SIGNALS 297 00042 #define SLOTS 298 00043 #define Q_OBJECT 299 00044 #define Q_PROPERTY 300 00045 #define Q_OVERRIDE 301 00046 #define Q_CLASSINFO 302 00047 #define Q_ENUMS 303 00048 #define Q_SETS 304 00049 #define READ 305 00050 #define WRITE 306 00051 #define STORED 307 00052 #define DESIGNABLE 308 00053 #define SCRIPTABLE 309 00054 #define RESET 310 00055 typedef union { 00056 char char_val; 00057 int int_val; 00058 double double_val; 00059 char *string; 00060 Access access; 00061 Function *function; 00062 ArgList *arg_list; 00063 Argument *arg; 00064 } YYSTYPE; 00065 extern YYSTYPE yylval;