]> pd.if.org Git - pccts/blob - testcpp/8/main.cpp
auto commit for import
[pccts] / testcpp / 8 / main.cpp
1 /* Simple main() to call a parser in another file */
2
3 #include "tokens.h"                     // define TokenType
4 #include "Expr.h"                       // define parser
5 #include "DLGLexer.h"           // define scanner
6 #include "PBlackBox.h"          // Define ParserBlackBox
7
8 int main()
9 {
10         ParserBlackBox<DLGLexer, Expr, ANTLRToken> p(stdin);
11
12         p.parser()->e();                        /* start parsing at rule 'e' of that parser */
13         return 0;
14 }