fcl-driver.cc

来自「parse fuzzy contrl language file」· CC 代码 · 共 38 行

CC
38
字号
#line 7372 "../../doc/bison.texinfo"#include "fcl-driver.hh"#include "fcl-parser.hh"fcl_driver::fcl_driver ()  : trace_scanning (false), trace_parsing (false){  variables["one"] = 1;  variables["two"] = 2;}fcl_driver::~fcl_driver (){}voidfcl_driver::parse (const std::string &f){  file = f;  scan_begin ();  yy::fcl_parser parser (*this);  parser.set_debug_level (trace_parsing);  parser.parse ();  scan_end ();}voidfcl_driver::error (const yy::location& l, const std::string& m){  std::cerr << l << ": " << m << std::endl;}voidfcl_driver::error (const std::string& m){  std::cerr << m << std::endl;}

⌨️ 快捷键说明

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