/usr/include/collada-dom2.4/dae/daeRawResolver.h is in libcollada-dom2.4-dp-dev 2.4.4+ds1-2build3.
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | /*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
#ifndef __DAE_RAWRESOLVER_H__
#define __DAE_RAWRESOLVER_H__
#include <string>
#include <map>
#include <dae/daeURI.h>
class DAE;
/**
* The @c daeRawResolver class derives from @c daeURIResolver and implements
* the .raw backend resolver for raw binary data.
*/
class DLLSPEC daeRawResolver : public daeURIResolver
{
public:
/**
* Constructor.
*/
daeRawResolver(DAE& dae);
/**
* Destructor.
*/
~daeRawResolver();
public: // Abstract Interface
virtual daeElement* resolveElement(const daeURI& uri);
virtual daeString getName();
};
// A simple class to make speed up the process of resolving a .raw URI.
// The result of the resolve is cached for future use.
// This is meant for DOM internal use only.
class DLLSPEC daeRawRefCache {
public:
daeRawRefCache() { lookupTable = new std::map<std::string, daeElement*>(); }
~daeRawRefCache() { delete lookupTable; }
daeElement* lookup(const daeURI& uri);
void add(const daeURI& uri, daeElement* elt);
void remove(const daeURI& uri);
void clear();
private:
std::map<std::string, daeElement*> * lookupTable;
};
#endif
|