This file is indexed.

/usr/include/BALL/COMMON/init.h is in libball1.4-dev 1.4.3~beta1-3.

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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_COMMON_INIT_H
#define BALL_COMMON_INIT_H

#ifndef BALL_COMMON_GLOBAL_H
#include <BALL/COMMON/global.h>
#endif

namespace BALL
{
	/** General initialization class for the BALL library.
			The sole purpose of this class is to provide a safe place
			for intializations that should occur before the first BALL
			functions are called. Please note that this is realized by
			a static singleton, so there is <b>no</b> guarantee of a 
			particular order of the creation of this class with respect
			to all other static variables.
	*/
	class BALL_EXPORT GlobalInitializer
	{
		public:
			~GlobalInitializer();
			static GlobalInitializer* init();

		private:
			GlobalInitializer();
			GlobalInitializer(const GlobalInitializer& gi);
	};
}

#endif // BALL_COMMON_INIT_H