i3
cfgparse.tab.h
Go to the documentation of this file.
1 /* A Bison parser, made by GNU Bison 2.6.1. */
2 
3 /* Bison interface for Yacc-like parsers in C
4 
5  Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
6 
7  This program is free software: you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation, either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 /* As a special exception, you may create a larger work that contains
21  part or all of the Bison parser skeleton and distribute that work
22  under terms of your choice, so long as that work isn't itself a
23  parser generator using the skeleton or a modified version thereof
24  as a parser skeleton. Alternatively, if you modify or redistribute
25  the parser skeleton itself, you may (at your option) remove this
26  special exception, which will cause the skeleton and the resulting
27  Bison output files to be licensed under the GNU General Public
28  License without this special exception.
29 
30  This special exception was added by the Free Software Foundation in
31  version 2.2 of Bison. */
32 
33 #ifndef YY_SRC_CFGPARSE_TAB_H
34 # define YY_SRC_CFGPARSE_TAB_H
35 /* Enabling traces. */
36 #ifndef YYDEBUG
37 # define YYDEBUG 1
38 #endif
39 #if YYDEBUG
40 extern int yydebug;
41 #endif
42 
43 /* Tokens. */
44 #ifndef YYTOKENTYPE
45 # define YYTOKENTYPE
46  /* Put the tokens into the symbol table, so that GDB and other debuggers
47  know about them. */
48  enum yytokentype {
49  NUMBER = 258,
50  WORD = 259,
51  STR = 260,
52  STR_NG = 261,
53  HEXCOLOR = 262,
54  OUTPUT = 263,
55  TOKBINDCODE = 264,
56  TOKTERMINAL = 265,
57  TOKCOMMENT = 266,
58  TOKFONT = 267,
59  TOKBINDSYM = 268,
60  MODIFIER = 269,
61  TOKCONTROL = 270,
62  TOKSHIFT = 271,
66  QUOTEDSTRING = 275,
67  TOKWORKSPACE = 276,
68  TOKOUTPUT = 277,
69  TOKASSIGN = 278,
70  TOKSET = 279,
71  TOKIPCSOCKET = 280,
73  TOKEXEC = 282,
76  TOKCOLOR = 285,
77  TOKARROW = 286,
78  TOKMODE = 287,
79  TOK_TIME_MS = 288,
80  TOK_BAR = 289,
82  TOK_HORIZ = 291,
83  TOK_VERT = 292,
84  TOK_AUTO = 293,
86  TOKNEWWINDOW = 295,
87  TOKNEWFLOAT = 296,
88  TOK_NORMAL = 297,
89  TOK_NONE = 298,
90  TOK_PIXEL = 299,
91  TOK_1PIXEL = 300,
93  TOK_BOTH = 302,
101  TOK_DEFAULT = 310,
103  TOK_TABBED = 312,
106  TOK_IGNORE = 315,
125  TOK_BAR_TOP = 334,
139  TOK_RELEASE = 348,
140  TOK_MARK = 349,
141  TOK_CLASS = 350,
144  TOK_ID = 353,
145  TOK_CON_ID = 354,
146  TOK_TITLE = 355,
148  };
149 #endif
150 
151 
152 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
153 typedef union YYSTYPE
154 {
155 /* Line 2049 of yacc.c */
156 #line 701 "../i3-4.4/src/cfgparse.y"
157 
158  int number;
159  char *string;
160  uint32_t *single_color;
161  struct Colortriple *color;
162  Match *match;
163  struct Binding *binding;
164 
165 
166 /* Line 2049 of yacc.c */
167 #line 168 "src/cfgparse.tab.h"
168 } YYSTYPE;
169 # define YYSTYPE_IS_TRIVIAL 1
170 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
171 # define YYSTYPE_IS_DECLARED 1
172 #endif
173 
174 extern YYSTYPE yylval;
175 
176 #ifdef YYPARSE_PARAM
177 #if defined __STDC__ || defined __cplusplus
178 int yyparse (void *YYPARSE_PARAM);
179 #else
180 int yyparse ();
181 #endif
182 #else /* ! YYPARSE_PARAM */
183 #if defined __STDC__ || defined __cplusplus
184 int yyparse (void);
185 #else
186 int yyparse ();
187 #endif
188 #endif /* ! YYPARSE_PARAM */
189 
190 #endif /* !YY_SRC_CFGPARSE_TAB_H */