/usr/include/bulletml/bulletmlparser-tinyxml.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 | /// BulletML �̃p�[�T�E�c���[ by tinyxml
/**
* tinyxml�ɂ��BulletML�̃p�[�T
*/
#ifndef BULLETMLPARSER_TINYXML_H_
#define BULLETMLPARSER_TINYXML_H_
#include <string>
#include "bulletmlcommon.h"
#include "tinyxml/tinyxml.h"
class BulletMLNode;
class BulletMLParserTinyXML : public BulletMLParser {
public:
DECLSPEC BulletMLParserTinyXML(const char* filename);
DECLSPEC virtual ~BulletMLParserTinyXML();
DECLSPEC virtual void parse();
private:
void parseImpl(TiXmlDocument& doc);
protected:
void getTree(TiXmlNode* node);
void translateNode(TiXmlNode* node);
private:
BulletMLNode* curNode_;
};
#endif // ! BULLETMLPARSER_TINYXML_H_
|