This file is indexed.

/usr/include/BALL/VIEW/INPUT/inputPlugin.h is in libballview1.4-dev 1.4.3~beta1-4.

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
#ifndef INPUTPLUGIN_H
#define INPUTPLUGIN_H

#include <QtCore/QtPlugin>

namespace BALL
{
	namespace VIEW
	{
		class InputDeviceDriver;

		class InputPlugin
		{
			public:
				virtual ~InputPlugin() {}

				/**
				 * Set the receiver of the events emited by the
				 * input device.
				 */
				virtual void setReceiver(QWidget* receiver) = 0;

				/**
				 * Starts the input device driver and makes it send events.
				 *
				 * @return A pointer to the started driver
				 */
				virtual InputDeviceDriver* startDriver() = 0;
		};
	}
}

Q_DECLARE_INTERFACE(BALL::VIEW::InputPlugin, "org.ball-project.Plugin.InputPlugin/1.0")

#endif //INPUTPLUGIN_H