⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calc++-driver.hh

📁 GNU的词法/语法分析器bison源码
💻 HH
字号:
#line 7144 "../../doc/bison.texinfo"#ifndef CALCXX_DRIVER_HH# define CALCXX_DRIVER_HH# include <string># include <map>#line 7159 "../../doc/bison.texinfo"// Forward declarations.union YYSTYPE;namespace yy{  class location;  class calcxx_parser;}class calcxx_driver;#line 7177 "../../doc/bison.texinfo"// Announce to Flex the prototype we want for lexing function, ...# define YY_DECL						 \  int yylex (YYSTYPE* yylval, yy::location* yylloc, calcxx_driver& driver)// ... and declare it for the parser's sake.YY_DECL;#line 7190 "../../doc/bison.texinfo"// Conducting the whole scanning and parsing of Calc++.class calcxx_driver{public:  calcxx_driver ();  virtual ~calcxx_driver ();  std::map<std::string, int> variables;  int result;#line 7209 "../../doc/bison.texinfo"  // Handling the scanner.  void scan_begin ();  void scan_end ();  bool trace_scanning;#line 7220 "../../doc/bison.texinfo"  // Handling the parser.  void parse (const std::string& f);  std::string file;  bool trace_parsing;#line 7234 "../../doc/bison.texinfo"  // Error handling.  void error (const yy::location& l, const std::string& m);  void error (const std::string& m);};#endif // ! CALCXX_DRIVER_HH

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -