This file is indexed.

/usr/include/BALL/COMMON/version.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_COMMON_VERSION_H
#define BALL_COMMON_VERSION_H

#ifndef BALL_COMMON_EXCEPTION_H
#	include <BALL/COMMON/exception.h>
#endif

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

//
//  master data for all revisions is stored in this define!
//
#define BALL_RELEASE_STRING             "1.4.79"

namespace BALL
{

	/**	Version information class.
			The BALL release, release data and related version
			can be retrieved by these methods. \par
			Stable releases are designated with numbers only.  \par
			Alpha, beta, nonpublic, or prereleases are suffixed as "alpha", "beta", "nonpublic", and "pre", respectively.\par
			The VersionInfo class contains only static methods
			that can be used to retrieve the desired information.
			 \par
	\ingroup Common		
	*/
	class BALL_EXPORT VersionInfo
	{
		public:

			/** Enumeration of all possible release types.
			*/
			enum Type
			{
				STABLE,
				ALPHA,
				BETA,
				NONPUBLIC,
				PRERELEASE,
				PATCHLVL, // this can't be PATCHLEVEL due to a collision with historic Python versions (< 2.2).
				UNKNOWN
			};

			/** Return the version number, which is defined in BALL_RELEASE_STRING
			*/
			static const char* getVersion();

			/** Return the major revision number.
					(The part of the release number before the point)
					\throws Exception::InvalidFormat
			*/
			static int getMajorRevision();

			/** Return the minor revision number.
					(The part of the release number after the point)
					\throws Exception::InvalidFormat
			*/
			static int getMinorRevision();

			/** Return the type of release:
					ALPHA, BETA, NONPUPLIC, STABLE, PRERELEASE, PATCHLVL, UNKNOWN.
			*/
			static Type getType() ;
			

		protected:
			static const char* RELEASE_DATE_AND_TIME;
			static const char* RELEASE_WHAT_STRING;
	};
	
}

#endif // BALL_COMMON_VERSION_H