This file is indexed.

/usr/include/simgear/props/propsfwd.hxx is in libsimgear-dev 3.0.0-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
/**
 * \file propsfwwd.hxx
 * Forward declarations for properties (and related structures)
 */
 
#ifndef SG_PROPS_FWD_HXX
#define SG_PROPS_FWD_HXX

#include <simgear/structure/SGSharedPtr.hxx>

class SGPropertyNode;
 
typedef SGSharedPtr<SGPropertyNode> SGPropertyNode_ptr;
typedef SGSharedPtr<const SGPropertyNode> SGConstPropertyNode_ptr;
 
class SGCondition; 

#endif // of SG_PROPS_FWD_HXX