/* main.cpp Jeff Ondich, 5/30/10 Bison example, based on several found on-line, especially http://www.cs.ucr.edu/~lgao/teaching/calc/calc.y by Lan Gao. */ #include "calculator.h" // prototype of bison-generated parser function int yyparse(); int main() { yyparse(); return 0; }