source: trunk/third/bonobo-activation/server/activation-context-query-parser.h @ 18311

Revision 18311, 924 bytes checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18310, which included commits to RCS files with non-trunk default branches.
Line 
1#ifndef BISON_Y_TAB_H
2# define BISON_Y_TAB_H
3
4#ifndef YYSTYPE
5typedef union
6{
7  char *val_string;
8  char **val_stringv;
9  gdouble val_number;
10  gboolean val_boolean;
11  QueryExpr *qexp;
12  GSList *elist;
13  int val_enum;
14} yystype;
15# define YYSTYPE yystype
16# define YYSTYPE_IS_TRIVIAL 1
17#endif
18# define        P_CONST_STRING  257
19# define        P_CONST_NUMBER  258
20# define        P_CONST_BOOLEAN 259
21# define        P_CONST_ID      260
22# define        LPAREN  261
23# define        RPAREN  262
24# define        LBRACKET        263
25# define        RBRACKET        264
26# define        P_NOT   265
27# define        P_NEGATE        266
28# define        P_DOLLAR        267
29# define        P_MULTIPLY      268
30# define        P_DIVIDE        269
31# define        P_ADD   270
32# define        P_SUBTRACT      271
33# define        P_EQ    272
34# define        P_NEQ   273
35# define        P_LEQ   274
36# define        P_GEQ   275
37# define        P_LT    276
38# define        P_GT    277
39# define        P_OR    278
40# define        P_AND   279
41# define        P_XOR   280
42# define        COMMA   281
43# define        PERIOD  282
44# define        PARSE_ERROR     283
45
46
47extern YYSTYPE yylval;
48
49#endif /* not BISON_Y_TAB_H */
Note: See TracBrowser for help on using the repository browser.