This file is indexed.

/usr/include/qxrunner/qxrunner_global.h is in libqxrunner-dev 0.9.2-0ubuntu3.

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
/*!
 * \file  qxrunner_global.h
 *
 * \brief Declares global functions, macros, symbols and the like.
 */

#ifndef QXRUNNER_GLOBAL_H
#define QXRUNNER_GLOBAL_H

#include <Qt/qglobal.h>

/*!
 * Macro to export symbols to DLL with VC++:
 *
 * - QXRUNNER_DLL_BUILD must be defined when building the DLL.
 * - QXRUNNER_DLL must be defined if linking against the DLL.
 * - If none of the above are defined then you are building or
 *   linking against the static library.
 */

#if defined(QXRUNNER_DLL_BUILD)
#  define QXRUNNER_EXPORT Q_DECL_EXPORT
#elif defined (QXRUNNER_DLL)
#  define QXRUNNER_EXPORT Q_DECL_IMPORT
#else
#  define QXRUNNER_EXPORT
#endif

#define QXRUNNER_VERSION_STR   "0.9.2"

namespace QxRunner {

/*!
 * Returns the version number of QxRunner at run-time as a string
 * (for example, "1.0.0"). This may be a different version than the
 * version the application was compiled against.
 */
const char* version();

/*!
 * Result types handled by QxRunner.
 *
 * \sa \ref result_types
 */
enum RunnerResult
{
	NoResult     = 0,		//!< No result available, item not run yet.
	RunSuccess   = 1,		//!< Item completed successfully.
	RunInfo      = 2,		//!< Item completed successfully and has an info.
	RunWarning   = 4,		//!< Item completed with a warning.
	RunError     = 8,		//!< Item completed with an error.
	RunFatal     = 16,		//!< Item completed with a fatal error.
	RunException = 32		//!< Item not completed due to an unhandled error.
};

/*!
 * This constant defines all reasonable results returned by runner
 * items, provided for convenience.
 */
const int AllResults = RunSuccess | RunInfo | RunWarning | RunError | RunFatal;

} // namespace

#endif // QXRUNNER_GLOBAL_H