Calc++ Top Level (Bison 3.8.1)

Previous: , Up: A Complete C++ Example [Contents][Index]


10.1.8.5 Calc++ Top Level

The top level file, calc++.cc, poses no problem.

#include <iostream>
#include "driver.hh"
int
main (int argc, char *argv[])
{
 int res = 0;
 driver drv;
 for (int i = 1; i < argc; ++i)
 if (argv[i] == std::string ("-p"))
 drv.trace_parsing = true;
 else if (argv[i] == std::string ("-s"))
 drv.trace_scanning = true;
 else if (!drv.parse (argv[i]))
 std::cout << drv.result << '\n';
 else
 res = 1;
 return res;
}

AltStyle によって変換されたページ (->オリジナル) /