source: XIOS/trunk/src/parse_expr/yacc_parser.hpp @ 501

Last change on this file since 501 was 501, checked in by ymipsl, 9 years ago

Add licence copyright to all file ond directory src using the command :
svn propset -R copyright -F header_licence src

XIOS is now officialy under CeCILL licence

YM

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 2.4 KB
Line 
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     NUMBER = 258,
43     VAR = 259,
44     ID = 260,
45     AVERAGE = 261,
46     PLUS = 262,
47     MINUS = 263,
48     TIMES = 264,
49     DIVIDE = 265,
50     POWER = 266,
51     LEFT_PARENTHESIS = 267,
52     RIGHT_PARENTHESIS = 268,
53     END = 269,
54     NEG = 270
55   };
56#endif
57
58
59
60#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
61typedef union YYSTYPE
62{
63
64/* Line 1676 of yacc.c  */
65#line 36 "yacc_parser.yacc"
66
67    std::string* str ;                /* symbol table index */
68    CSimpleNodeExpr* node ;
69
70
71
72/* Line 1676 of yacc.c  */
73#line 74 "yacc_parser.hpp"
74} YYSTYPE;
75# define YYSTYPE_IS_TRIVIAL 1
76# define yystype YYSTYPE /* obsolescent; will be withdrawn */
77# define YYSTYPE_IS_DECLARED 1
78#endif
79
80extern YYSTYPE yylval;
81
82
Note: See TracBrowser for help on using the repository browser.