/usr/include/collada-dom2.4/dae/daeDom.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 | /*
* 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
*
*/
// \file daeDom.h holds all the bindings between dae and different versions of the doms. allows dae functions to use the current loaded dom seamlessly.
// specversion the collada specification to load into memory. For example: "1.4.1" or "1.5.0". If NULL, then the highest version found will be loaded.
#ifndef __DAE_DOM__
#define __DAE_DOM__
class daeMetaElement;
class DAE;
daeMetaElement* initializeDomMeta(DAE& dae, const char* specversion=NULL);
daeInt GetColladaTypeCount(const char* specversion=NULL);
daeString GetCOLLADA_VERSION(const char* specversion=NULL);
daeString GetCOLLADA_NAMESPACE(const char* specversion=NULL);
daeMetaElement * registerElementAny(DAE& dae);
void copyElementAny(daeElementRef dstAny, daeElement* srcAny);
daeInt getDomAnyID(DAE& dae);
daeInt getDomSourceID(DAE& dae);
daeInt getDomCOLLADAID(const char* specversion = NULL);
daeString COLLADA_ELEMENT_TECHNIQUE_COMMON(DAE& dae);
daeString COLLADA_ELEMENT_TECHNIQUE(DAE& dae);
daeDoubleArray* getDomSourceFloatArray(daeElement* elt);
#endif //__DAE_DOM__
|