/usr/include/collada-dom2.4/dae/daeStandardURIResolver.h is in libcollada-dom2.4-dp-dev 2.4.4+ds1-1.
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 | /*
* 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_STANDARD_URI_RESOLVER__
#define __DAE_STANDARD_URI_RESOVLER__
#include <string>
#include "dae/daeURI.h"
class DAE;
/**
* The @c daeStandardURIResolver class derives from @c daeURIResolver and implements
* the default XML backend resolver.
*/
class daeStandardURIResolver : public daeURIResolver
{
public:
/**
* Constructor.
* @param database The @c daeDatabase used.
* @param plugin The @c daeIOPlugin used.
*/
DLLSPEC daeStandardURIResolver(DAE& dae);
/**
* Destructor.
*/
DLLSPEC ~daeStandardURIResolver();
public: // Abstract Interface
virtual DLLSPEC daeElement* resolveElement(const daeURI& uri);
virtual DLLSPEC daeString getName();
};
#endif //__DAE_STANDARD_URI_RESOLVER__
|