/usr/include/collada2gltf/GLTF/GLTFAccessorCache.h is in libcollada2gltfconvert-dev 20140924-3.
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 | #ifndef __GLTF_ACCESSOR_CACHE__
#define __GLTF_ACCESSOR_CACHE__
#include "../GLTFOpenCOLLADA.h"
namespace GLTF
{
class GLTFAccessorCache
{
public:
GLTFAccessorCache(void *pData, size_t length);
GLTFAccessorCache(const GLTFAccessorCache& rhs);
virtual ~GLTFAccessorCache();
bool operator<(const GLTFAccessorCache& rhs) const;
size_t length() const;
private:
const GLTFAccessorCache& operator=(const GLTFAccessorCache& rhs);
unsigned char *m_pData;
size_t m_length;
};
}
#endif
|