]> git.draconx.ca Git - gob-dx.git/blob - src/parse.h
Release 2.0.2
[gob-dx.git] / src / parse.h
1 #ifndef BISON_Y_TAB_H
2 # define BISON_Y_TAB_H
3
4 #ifndef YYSTYPE
5 typedef union {
6         char *id;
7         GString *cbuf;
8         GList *list;
9         int line;
10         int sigtype;
11 } yystype;
12 # define YYSTYPE yystype
13 # define YYSTYPE_IS_TRIVIAL 1
14 #endif
15 # define        CLASS   257
16 # define        FROM    258
17 # define        CONST   259
18 # define        VOID    260
19 # define        STRUCT  261
20 # define        UNION   262
21 # define        ENUM    263
22 # define        THREEDOTS       264
23 # define        SIGNED  265
24 # define        UNSIGNED        266
25 # define        LONG    267
26 # define        SHORT   268
27 # define        INT     269
28 # define        FLOAT   270
29 # define        DOUBLE  271
30 # define        CHAR    272
31 # define        TOKEN   273
32 # define        NUMBER  274
33 # define        TYPETOKEN       275
34 # define        ARRAY_DIM       276
35 # define        SINGLE_CHAR     277
36 # define        CCODE   278
37 # define        HTCODE  279
38 # define        PHCODE  280
39 # define        HCODE   281
40 # define        ACODE   282
41 # define        ATCODE  283
42 # define        STRING  284
43 # define        PUBLIC  285
44 # define        PRIVATE 286
45 # define        PROTECTED       287
46 # define        CLASSWIDE       288
47 # define        PROPERTY        289
48 # define        ARGUMENT        290
49 # define        VIRTUAL 291
50 # define        SIGNAL  292
51 # define        OVERRIDE        293
52 # define        NICK    294
53 # define        BLURB   295
54 # define        MAXIMUM 296
55 # define        MINIMUM 297
56 # define        DEFAULT_VALUE   298
57 # define        ERROR   299
58 # define        FLAGS   300
59 # define        TYPE    301
60 # define        FLAGS_TYPE      302
61 # define        ENUM_TYPE       303
62 # define        PARAM_TYPE      304
63 # define        BOXED_TYPE      305
64 # define        OBJECT_TYPE     306
65
66
67 extern YYSTYPE yylval;
68
69 #endif /* not BISON_Y_TAB_H */