cmdparser.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // cmdparser.h
  2. //
  3. // Parse Celestia command files and turn them into CommandSequences.
  4. //
  5. // Copyright (C) 2001 Chris Laurel <claurel@shatters.net>
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CMDPARSER_H_
  12. #define _CMDPARSER_H_
  13. #include <iostream>
  14. #include <celengine/parser.h>
  15. #include <celengine/command.h>
  16. class CommandParser
  17. {
  18.  public:
  19.     CommandParser(std::istream&);
  20.     CommandParser(Tokenizer&);
  21.     ~CommandParser();
  22.     CommandSequence* parse();
  23.     const std::vector<std::string>* getErrors() const;
  24.  private:
  25.     Command* parseCommand();
  26.     void error(const string);
  27.     Parser* parser;
  28.     Tokenizer* tokenizer;
  29.     std::vector<std::string> errorList;
  30. };
  31. #endif // _CMDPARSER_H_