Solid
predicate_parser.h
Go to the documentation of this file.
00001 00002 /* A Bison parser, made by GNU Bison 2.4.1. */ 00003 00004 /* Skeleton interface for Bison's Yacc-like parsers in C 00005 00006 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 00007 Free Software Foundation, Inc. 00008 00009 This program is free software: you can redistribute it and/or modify 00010 it under the terms of the GNU General Public License as published by 00011 the Free Software Foundation; either version 2, or (at your option) 00012 any later version. 00013 00014 This program is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with this program; if not, write to the Free Software 00021 Foundation, Inc., 51 Franklin Street, Fifth Floor, 00022 Boston, MA 02110-1301, USA. */ 00023 00024 /* As a special exception, you may create a larger work that contains 00025 part or all of the Bison parser skeleton and distribute that work 00026 under terms of your choice, so long as that work isn't itself a 00027 parser generator using the skeleton or a modified version thereof 00028 as a parser skeleton. Alternatively, if you modify or redistribute 00029 the parser skeleton itself, you may (at your option) remove this 00030 special exception, which will cause the skeleton and the resulting 00031 Bison output files to be licensed under the GNU General Public 00032 License without this special exception. 00033 00034 This special exception was added by the Free Software Foundation in 00035 version 2.2 of Bison. */ 00036 00037 00038 /* Tokens. */ 00039 #ifndef YYTOKENTYPE 00040 # define YYTOKENTYPE 00041 /* Put the tokens into the symbol table, so that GDB and other debuggers 00042 know about them. */ 00043 enum yytokentype { 00044 EQ = 258, 00045 MASK = 259, 00046 AND = 260, 00047 OR = 261, 00048 IS = 262, 00049 VAL_BOOL = 263, 00050 VAL_STRING = 264, 00051 VAL_ID = 265, 00052 VAL_NUM = 266, 00053 VAL_FLOAT = 267 00054 }; 00055 #endif 00056 00057 00058 00059 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 00060 typedef union YYSTYPE 00061 { 00062 00063 /* Line 1676 of yacc.c */ 00064 #line 22 "predicate_parser.y" 00065 00066 char valb; 00067 int vali; 00068 double vald; 00069 char *name; 00070 void *ptr; 00071 00072 00073 00074 /* Line 1676 of yacc.c */ 00075 #line 74 "predicate_parser.tab.h" 00076 } YYSTYPE; 00077 # define YYSTYPE_IS_TRIVIAL 1 00078 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 00079 # define YYSTYPE_IS_DECLARED 1 00080 #endif 00081 00082 00083 00084
KDE 4.6 API Reference