/usr/include/bulletml/bulletmlparser-ygg.h is in libbulletml-dev 0.0.6-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | /// BulletML �̃p�[�T�E�c���[ by yggdrasil
/**
* Yggdrasil �ɂ�� BulletML �̃p�[�T
*/
#ifndef BULLETMLPARSER_YGG_H_
#define BULLETMLPARSER_YGG_H_
#include <string>
#include "bulletmlcommon.h"
#include "ygg/ygg.h"
class BulletMLParserYggdrasil
: public BulletMLParser, public yggdrasil::sax_handler
{
public:
void on_error(yggdrasil::ygg_error* parse_error);
void start_document(yggdrasil::ygg_node root);
void end_document(yggdrasil::ygg_node &root);
void start_element(yggdrasil::ygg_node element);
void end_element(yggdrasil::ygg_node element);
void catch_text(yggdrasil::ygg_node text);
public:
DECLSPEC explicit BulletMLParserYggdrasil(const char* filename);
DECLSPEC virtual ~BulletMLParserYggdrasil();
DECLSPEC virtual void parse();
protected:
std::string trimString(const std::string& str);
private:
class BulletMLNode* curNode_;
};
#endif // ! BULLETMLPARSER_YGG_H_
|