My Project  0.0.16
QUCS Mapping
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
tokens_mdl.h
Go to the documentation of this file.
1 
2 /* A Bison parser, made by GNU Bison 2.4.1. */
3 
4 /* Skeleton interface for Bison's Yacc-like parsers in C
5 
6  Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
7  Free Software Foundation, Inc.
8 
9  This program is free software: you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  (at your option) any later version.
13 
14  This program is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 
22 /* As a special exception, you may create a larger work that contains
23  part or all of the Bison parser skeleton and distribute that work
24  under terms of your choice, so long as that work isn't itself a
25  parser generator using the skeleton or a modified version thereof
26  as a parser skeleton. Alternatively, if you modify or redistribute
27  the parser skeleton itself, you may (at your option) remove this
28  special exception, which will cause the skeleton and the resulting
29  Bison output files to be licensed under the GNU General Public
30  License without this special exception.
31 
32  This special exception was added by the Free Software Foundation in
33  version 2.2 of Bison. */
34 
35 
36 /* Tokens. */
37 #ifndef YYTOKENTYPE
38 # define YYTOKENTYPE
39  /* Put the tokens into the symbol table, so that GDB and other debuggers
40  know about them. */
41  enum yytokentype {
42  LINK = 258,
43  Identifier = 259,
44  String = 260,
46  Real = 262,
47  t_LINK = 263,
48  t_VIEW = 264,
49  t_TABLE = 265,
50  t_PSTABLE = 266,
51  t_CNTABLE = 267,
52  t_OPTIMEDIT = 268,
53  t_BLKEDIT = 269,
54  t_HYPTABLE = 270,
55  t_ELEMENT = 271,
56  t_DATA = 272,
57  t_DATASET = 273,
58  t_DATASIZE = 274,
59  t_POINT = 275,
60  t_MEMBER = 276,
61  t_LIST = 277,
66  t_PLOTERROR = 282,
67  t_TYPE = 283,
69  t_PARAM = 285,
70  t_RANGE = 286,
71  t_CONNPAIR = 287,
72  t_CALDATA = 288,
73  t_CALSET = 289,
74  t_TERM = 290,
75  t_APPLIC = 291,
76  t_SUBAPP = 292,
77  t_EDITSIZE = 293,
78  t_PLOTSIZE = 294,
79  t_OPTRANGE = 295
80  };
81 #endif
82 /* Tokens. */
83 #define LINK 258
84 #define Identifier 259
85 #define String 260
86 #define InvalidCharacter 261
87 #define Real 262
88 #define t_LINK 263
89 #define t_VIEW 264
90 #define t_TABLE 265
91 #define t_PSTABLE 266
92 #define t_CNTABLE 267
93 #define t_OPTIMEDIT 268
94 #define t_BLKEDIT 269
95 #define t_HYPTABLE 270
96 #define t_ELEMENT 271
97 #define t_DATA 272
98 #define t_DATASET 273
99 #define t_DATASIZE 274
100 #define t_POINT 275
101 #define t_MEMBER 276
102 #define t_LIST 277
103 #define t_PLOTOPTIMIZEROPT 278
104 #define t_PLOTOPTIMIZERTRACESET 279
105 #define t_PLOTOPTIMIZERTRACEREGSET 280
106 #define t_PLOTOPTIMIZERTRACENATREGSET 281
107 #define t_PLOTERROR 282
108 #define t_TYPE 283
109 #define t_CIRCUITDECK 284
110 #define t_PARAM 285
111 #define t_RANGE 286
112 #define t_CONNPAIR 287
113 #define t_CALDATA 288
114 #define t_CALSET 289
115 #define t_TERM 290
116 #define t_APPLIC 291
117 #define t_SUBAPP 292
118 #define t_EDITSIZE 293
119 #define t_PLOTSIZE 294
120 #define t_OPTRANGE 295
121 
122 
123 
124 
125 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
126 typedef union YYSTYPE
127 {
128 
129 /* Line 1676 of yacc.c */
130 #line 91 "parse_mdl.y"
131 
132  char * ident;
133  double f;
134  struct mdl_point_t * point;
135  struct mdl_dataset_t * dset;
136  struct mdl_datasize_t * dsize;
137  struct mdl_link_t * link;
138  struct mdl_data_t * data;
139  struct mdl_dcontent_t * dcontent;
140  struct mdl_lcontent_t * lcontent;
141  struct mdl_element_t * element;
142  struct mdl_hyptable_t * hyptable;
143  struct mdl_table_t * table;
144 
145 
146 
147 /* Line 1676 of yacc.c */
148 #line 149 "tokens_mdl.h"
149 } YYSTYPE;
150 # define YYSTYPE_IS_TRIVIAL 1
151 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
152 # define YYSTYPE_IS_DECLARED 1
153 #endif
154 
155 extern YYSTYPE mdl_lval;
156 
157