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

编译器/解释器

开发平台:

Others

  1. #include "IDLLexer.hpp"
  2. #include "IDLParser.hpp"
  3. #include <iostream>
  4. int main()
  5. {
  6. ANTLR_USING_NAMESPACE(std)
  7. try {
  8. IDLLexer lexer(cin);
  9. IDLParser parser(lexer);
  10. parser.specification();
  11. } catch(exception& e) {
  12. cerr << "exception: " << e.what() << endl;
  13. }
  14. }