logo

libbulletml

Library of Bullet Markup Language (forked from https://shinh.skr.jp/libbulletml/index_en.html )git clone https://hacktivis.me/git/libbulletml.git

bulletmlparser-xerces.h (471B)


  1. /// BulletML のパーサ・ツリー by Xerces
  2. /**
  3. * Xerces による BulletML のパーサ
  4. */
  5. #ifndef BULLETMLPARSER_XERCES_H_
  6. #define BULLETMLPARSER_XERCES_H_
  7. #ifdef USE_XERCES
  8. class BulletMLParserXerces : public BulletMLParser {
  9. public:
  10. explicit BulletMLParserXerces(const char* filename);
  11. virtual ~BulletMLParserXerces();
  12. virtual void parse();
  13. private:
  14. friend class BulletMLParserXercesSAXHandler;
  15. };
  16. #endif // USE_XERCES
  17. #endif // ! BULLETMLPARSER_XERCES_H_