(file) Return to WQLYACC.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / WQL

 1 karl  1.5 //%2004////////////////////////////////////////////////////////////////////////
 2 karl  1.4 //
 3 karl  1.5 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 4           // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
 5           // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
 6 karl  1.4 // IBM Corp.; EMC Corporation, The Open Group.
 7 karl  1.5 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 8           // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
 9 karl  1.4 //
10           // Permission is hereby granted, free of charge, to any person obtaining a copy
11           // of this software and associated documentation files (the "Software"), to
12           // deal in the Software without restriction, including without limitation the
13           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14           // sell copies of the Software, and to permit persons to whom the Software is
15           // furnished to do so, subject to the following conditions:
16           // 
17           // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
18           // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
19           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
20           // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
21           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23           // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25           //
26           //==============================================================================
27 mike  1.2 typedef union 
28           {
29              int intValue;
30              double doubleValue;
31              char* strValue;
32              void* nodeValue;
33           } YYSTYPE;
34 kumpf 1.3 #define	TOK_INTEGER	257
35           #define	TOK_DOUBLE	258
36           #define	TOK_STRING	259
37           #define	TOK_TRUE	260
38           #define	TOK_FALSE	261
39           #define	TOK_NULL	262
40           #define	TOK_EQ	263
41           #define	TOK_NE	264
42           #define	TOK_LT	265
43           #define	TOK_LE	266
44           #define	TOK_GT	267
45           #define	TOK_GE	268
46           #define	TOK_NOT	269
47           #define	TOK_OR	270
48           #define	TOK_AND	271
49           #define	TOK_IS	272
50           #define	TOK_IDENTIFIER	273
51           #define	TOK_SELECT	274
52           #define	TOK_WHERE	275
53           #define	TOK_FROM	276
54           #define	TOK_UNEXPECTED_CHAR	277
55 mike  1.2 
56           
57           extern YYSTYPE WQL_lval;

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2