This file is indexed.

/usr/include/collada-dom2.4/dom.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
40
41
42
43
44
45
46
/*
 * 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 __DOM__
#define __DOM__

class DAE;
class daeMetaElement;

#ifdef COLLADA_DOM_SUPPORT150
namespace ColladaDOM150 {
extern DLLSPEC daeString COLLADA_VERSION;
extern DLLSPEC daeString COLLADA_NAMESPACE;

// Register all types
DLLSPEC void registerDomTypes(DAE& dae);

// Register all elements
DLLSPEC daeMetaElement* registerDomElements(DAE& dae);

DLLSPEC daeInt colladaTypeCount();

}
#endif

#ifdef COLLADA_DOM_SUPPORT141
namespace ColladaDOM141 {
extern DLLSPEC daeString COLLADA_VERSION;
extern DLLSPEC daeString COLLADA_NAMESPACE;

// Register all types
DLLSPEC void registerDomTypes(DAE& dae);

// Register all elements
DLLSPEC daeMetaElement* registerDomElements(DAE& dae);

DLLSPEC daeInt colladaTypeCount();

}
#endif

#endif // __DOM_INTERFACE__