00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef YYTOKENTYPE
00028 # define YYTOKENTYPE
00029
00030
00031 enum yytokentype {
00032 OBRACE = 258,
00033 EBRACE = 259,
00034 QUOTE = 260,
00035 SEMICOLON = 261,
00036 DISPLAY = 262,
00037 DEVICE = 263,
00038 MODULE = 264,
00039 LIBRARY = 265,
00040 CONTROL = 266,
00041 LED = 267,
00042 TEMP = 268,
00043 CLASS = 269,
00044 PORT = 270,
00045 REPORT = 271,
00046 USE = 272,
00047 FAN = 273,
00048 AS = 274,
00049 NAMED = 275,
00050 SCREEN = 276,
00051 AT = 277,
00052 SHOW = 278,
00053 SIZE_KW = 279,
00054 COMMA = 280,
00055 VIRTUAL = 281,
00056 STRING = 282,
00057 INTEGER = 283
00058 };
00059 #endif
00060
00061 #define OBRACE 258
00062 #define EBRACE 259
00063 #define QUOTE 260
00064 #define SEMICOLON 261
00065 #define DISPLAY 262
00066 #define DEVICE 263
00067 #define MODULE 264
00068 #define LIBRARY 265
00069 #define CONTROL 266
00070 #define LED 267
00071 #define TEMP 268
00072 #define CLASS 269
00073 #define PORT 270
00074 #define REPORT 271
00075 #define USE 272
00076 #define FAN 273
00077 #define AS 274
00078 #define NAMED 275
00079 #define SCREEN 276
00080 #define AT 277
00081 #define SHOW 278
00082 #define SIZE_KW 279
00083 #define COMMA 280
00084 #define VIRTUAL 281
00085 #define STRING 282
00086 #define INTEGER 283
00087
00088
00089
00090
00091 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
00092 #line 7 "parser.y"
00093 typedef union YYSTYPE {
00094 struct {
00095 int x;
00096 int y;
00097 } coord;
00098
00099 int number;
00100 char * str;
00101 } YYSTYPE;
00102
00103 #line 104 "y.tab.h"
00104 # define yystype YYSTYPE
00105 # define YYSTYPE_IS_DECLARED 1
00106 # define YYSTYPE_IS_TRIVIAL 1
00107 #endif
00108
00109 extern YYSTYPE yylval;
00110
00111
00112