This file is indexed.

/usr/include/bulletml/bulletmlparser-xerces.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
/// BulletML �̃p�[�T�E�c���[ by Xerces
/**
 * Xerces �ɂ�� BulletML �̃p�[�T
 */

#ifndef BULLETMLPARSER_XERCES_H_
#define BULLETMLPARSER_XERCES_H_

#ifdef USE_XERCES

class BulletMLParserXerces : public BulletMLParser {
public:
    explicit BulletMLParserXerces(const char* filename);
    virtual ~BulletMLParserXerces();

    virtual void parse();

private:
	friend class BulletMLParserXercesSAXHandler;
};

#endif // USE_XERCES

#endif // ! BULLETMLPARSER_XERCES_H_