Source-highlight Library
stylecssparser.h
00001 /* A Bison parser, made by GNU Bison 2.5.  */
00002 
00003 /* Bison interface for Yacc-like parsers in C
00004    
00005       Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
00006    
00007    This program is free software: you can redistribute it and/or modify
00008    it under the terms of the GNU General Public License as published by
00009    the Free Software Foundation, either version 3 of the License, or
00010    (at your option) any later version.
00011    
00012    This program is distributed in the hope that it will be useful,
00013    but WITHOUT ANY WARRANTY; without even the implied warranty of
00014    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015    GNU General Public License for more details.
00016    
00017    You should have received a copy of the GNU General Public License
00018    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
00019 
00020 /* As a special exception, you may create a larger work that contains
00021    part or all of the Bison parser skeleton and distribute that work
00022    under terms of your choice, so long as that work isn't itself a
00023    parser generator using the skeleton or a modified version thereof
00024    as a parser skeleton.  Alternatively, if you modify or redistribute
00025    the parser skeleton itself, you may (at your option) remove this
00026    special exception, which will cause the skeleton and the resulting
00027    Bison output files to be licensed under the GNU General Public
00028    License without this special exception.
00029    
00030    This special exception was added by the Free Software Foundation in
00031    version 2.2 of Bison.  */
00032 
00033 
00034 /* Tokens.  */
00035 #ifndef YYTOKENTYPE
00036 # define YYTOKENTYPE
00037    /* Put the tokens into the symbol table, so that GDB and other debuggers
00038       know about them.  */
00039    enum yytokentype {
00040      BOLD = 258,
00041      ITALICS = 259,
00042      UNDERLINE = 260,
00043      FIXED = 261,
00044      NOTFIXED = 262,
00045      NOREF = 263,
00046      KEY = 264,
00047      COLOR = 265,
00048      BG_COLOR = 266,
00049      STRINGDEF = 267,
00050      BG_STRINGDEF = 268
00051    };
00052 #endif
00053 /* Tokens.  */
00054 #define BOLD 258
00055 #define ITALICS 259
00056 #define UNDERLINE 260
00057 #define FIXED 261
00058 #define NOTFIXED 262
00059 #define NOREF 263
00060 #define KEY 264
00061 #define COLOR 265
00062 #define BG_COLOR 266
00063 #define STRINGDEF 267
00064 #define BG_STRINGDEF 268
00065 
00066 
00067 
00068 
00069 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
00070 typedef union YYSTYPE
00071 {
00072 
00073 /* Line 2068 of yacc.c  */
00074 #line 74 "../../../lib/srchilite/stylecssparser.yy"
00075 
00076   int tok ; /* command */
00077   const std::string * string ; /* string : id, ... */
00078   srchilite::StyleConstant flag ;
00079   srchilite::StyleConstants *styleconstants;
00080   srchilite::KeyList *keylist;
00081 
00082 
00083 
00084 /* Line 2068 of yacc.c  */
00085 #line 86 "../../../lib/srchilite/stylecssparser.h"
00086 } YYSTYPE;
00087 # define YYSTYPE_IS_TRIVIAL 1
00088 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
00089 # define YYSTYPE_IS_DECLARED 1
00090 #endif
00091 
00092 extern YYSTYPE stylecsssc_lval;
00093 
00094