~ubuntu-branches/ubuntu/trusty/sblim-sfcb/trusty-proposed

« back to all changes in this revision

Viewing changes to queryParser.h

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2009-06-08 12:04:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090608120449-byfplk09rqz8rtg6
Tags: 1.3.3-0ubuntu1
* New upstream release.
* debian/rules: Removed rpath hacks, SFCB default build handles that now.
* Removed 1934753-remove-assignment.diff, now upstream.
* Refreshed patch cim-schema-location.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A Bison parser, made by GNU Bison 2.1.  */
2
 
 
3
 
/* Skeleton parser for Yacc-like parsing with Bison,
4
 
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 
1
/* A Bison parser, made by GNU Bison 2.3.  */
 
2
 
 
3
/* Skeleton interface for Bison's Yacc-like parsers in C
 
4
 
 
5
   Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
 
6
   Free Software Foundation, Inc.
5
7
 
6
8
   This program is free software; you can redistribute it and/or modify
7
9
   it under the terms of the GNU General Public License as published by
18
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
21
   Boston, MA 02110-1301, USA.  */
20
22
 
21
 
/* As a special exception, when this file is copied by Bison into a
22
 
   Bison output file, you may use that output file without restriction.
23
 
   This special exception was added by the Free Software Foundation
24
 
   in version 1.24 of Bison.  */
 
23
/* As a special exception, you may create a larger work that contains
 
24
   part or all of the Bison parser skeleton and distribute that work
 
25
   under terms of your choice, so long as that work isn't itself a
 
26
   parser generator using the skeleton or a modified version thereof
 
27
   as a parser skeleton.  Alternatively, if you modify or redistribute
 
28
   the parser skeleton itself, you may (at your option) remove this
 
29
   special exception, which will cause the skeleton and the resulting
 
30
   Bison output files to be licensed under the GNU General Public
 
31
   License without this special exception.
 
32
 
 
33
   This special exception was added by the Free Software Foundation in
 
34
   version 2.2 of Bison.  */
25
35
 
26
36
/* Tokens.  */
27
37
#ifndef YYTOKENTYPE
82
92
 
83
93
 
84
94
 
85
 
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
 
95
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 
96
typedef union YYSTYPE
86
97
#line 100 "queryParser.y"
87
 
typedef union YYSTYPE {
 
98
{
88
99
   long intValue;
89
100
   double doubleValue;
90
101
   char* strValue;
95
106
   QLOperand* comparisonTerm;
96
107
   QLOperation* searchCondition;
97
108
   QLOperation* predicate;
98
 
} YYSTYPE;
99
 
/* Line 1447 of yacc.c.  */
100
 
#line 101 "queryParser.h"
 
109
}
 
110
/* Line 1489 of yacc.c.  */
 
111
#line 112 "queryParser.h"
 
112
        YYSTYPE;
101
113
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
102
114
# define YYSTYPE_IS_DECLARED 1
103
115
# define YYSTYPE_IS_TRIVIAL 1
105
117
 
106
118
extern YYSTYPE sfcQuerylval;
107
119
 
108
 
 
109