This file is indexed.

/usr/include/oce/Select3D_Pnt.hxx is in liboce-visualization-dev 0.9.1-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
#ifndef _Select3D_Pnt_HeaderFile
#define _Select3D_Pnt_HeaderFile

#include<gp_Pnt.hxx>
#include<Standard_ShortReal.hxx>
#include<Select3D_Macro.hxx>

struct Select3D_Pnt{  

 Standard_ShortReal x, y, z;
 
 inline operator gp_Pnt() const
 {
   return gp_Pnt(x, y, z);
 }

 inline operator gp_XYZ() const
 {
  return gp_XYZ(x, y, z);
 }

 inline gp_Pnt operator = (const gp_Pnt& thePnt)
 {
   x = DToF(thePnt.X());
   y = DToF(thePnt.Y());
   z = DToF(thePnt.Z());
   return *this;
 }

};

#endif