cmCommandArgumentParserTokens.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. /* A Bison parser, made by GNU Bison 2.3. */
  11. /* Skeleton interface for Bison's Yacc-like parsers in C
  12. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
  13. Free Software Foundation, Inc.
  14. This program is free software; you can redistribute it and/or modify
  15. it under the terms of the GNU General Public License as published by
  16. the Free Software Foundation; either version 2, or (at your option)
  17. any later version.
  18. This program is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. GNU General Public License for more details.
  22. You should have received a copy of the GNU General Public License
  23. along with this program; if not, write to the Free Software
  24. Foundation, Inc., 51 Franklin Street, Fifth Floor,
  25. Boston, MA 02110-1301, USA. */
  26. /* As a special exception, you may create a larger work that contains
  27. part or all of the Bison parser skeleton and distribute that work
  28. under terms of your choice, so long as that work isn't itself a
  29. parser generator using the skeleton or a modified version thereof
  30. as a parser skeleton. Alternatively, if you modify or redistribute
  31. the parser skeleton itself, you may (at your option) remove this
  32. special exception, which will cause the skeleton and the resulting
  33. Bison output files to be licensed under the GNU General Public
  34. License without this special exception.
  35. This special exception was added by the Free Software Foundation in
  36. version 2.2 of Bison. */
  37. /* Tokens. */
  38. #ifndef YYTOKENTYPE
  39. # define YYTOKENTYPE
  40. /* Put the tokens into the symbol table, so that GDB and other debuggers
  41. know about them. */
  42. enum yytokentype {
  43. cal_ENVCURLY = 258,
  44. cal_NCURLY = 259,
  45. cal_DCURLY = 260,
  46. cal_DOLLAR = 261,
  47. cal_LCURLY = 262,
  48. cal_RCURLY = 263,
  49. cal_NAME = 264,
  50. cal_BSLASH = 265,
  51. cal_SYMBOL = 266,
  52. cal_AT = 267,
  53. cal_ERROR = 268,
  54. cal_ATNAME = 269
  55. };
  56. #endif
  57. /* Tokens. */
  58. #define cal_ENVCURLY 258
  59. #define cal_NCURLY 259
  60. #define cal_DCURLY 260
  61. #define cal_DOLLAR 261
  62. #define cal_LCURLY 262
  63. #define cal_RCURLY 263
  64. #define cal_NAME 264
  65. #define cal_BSLASH 265
  66. #define cal_SYMBOL 266
  67. #define cal_AT 267
  68. #define cal_ERROR 268
  69. #define cal_ATNAME 269
  70. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  71. typedef int YYSTYPE;
  72. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  73. # define YYSTYPE_IS_DECLARED 1
  74. # define YYSTYPE_IS_TRIVIAL 1
  75. #endif