main.cpp
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. /* Simple main() to call a parser in another file */
  2. #include "tokens.h" // define TokenType
  3. #include "Expr.h" // define parser
  4. #include "DLGLexer.h" // define scanner
  5. #include "PBlackBox.h" // Define ParserBlackBox
  6. int main()
  7. {
  8. ParserBlackBox<DLGLexer, Expr, ANTLRToken> p(stdin);
  9. p.parser()->e(); /* start parsing at rule 'e' of that parser */
  10. return 0;
  11. }