This file is indexed.

/usr/include/BALL/VIEW/INPUT/motionTrackingEvent.h is in libballview1.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
#ifndef MOTIONTRACKINGEVENT_H
#define MOTIONTRACKINGEVENT_H

#include <QtCore/QEvent>

#include <BALL/VIEW/INPUT/deviceEvent.h>
#include <BALL/MATHS/vector3.h>
#include <BALL/MATHS/quaternion.h>

namespace BALL
{
	namespace VIEW
	{
		class MotionTrackingEvent : public DeviceEvent
		{
			public:
				MotionTrackingEvent(InputDeviceDriver* dev, double x, double y, double z, 
				                                            double q1, double q2, double q3, double q4);

				const Vector3& getOrigin() { return origin_; }
				const Quaternion& getTransform() { return transform_; }
			private:
				Vector3 origin_;
				Quaternion transform_;
		};
	}
}

#endif //MOTIONTRACKINGEVENT_H