This file is indexed.

/usr/include/ossim/base/ossimNadconGridDatum.h is in libossim-dev 1.8.16-3+b1.

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

#include <ossim/base/ossimThreeParamDatum.h>
#include <ossim/base/ossimNadconGridFile.h>
#include <ossim/base/ossimDrect.h>

class ossimNadconGridDatum : public ossimThreeParamDatum
{
public:
  ossimNadconGridDatum(const ossimFilename& datumDirectory,
		       const ossimString &code, 
		       const ossimString &name,
		       const ossimEllipsoid* anEllipsoid,
		       double sigmaX,
		       double sigmaY,
		       double sigmaZ,
		       double westLongitude,
		       double eastLongitude,
		       double southLatitude,
		       double northLatitude,
		       double param1,
		       double param2,
		       double param3);

protected:
  mutable ossimDrect theConusRect;
  mutable ossimDrect theHawaiiRect;
  mutable ossimDrect theAlaskaRect;
  mutable ossimDrect theStGeorgeRect;
  mutable ossimDrect theLatStLaurenceRect;
  mutable ossimDrect theStPaulRect;
  mutable ossimDrect thePrviRect;
  
  mutable ossimNadconGridFile theLatGrid;
  mutable ossimNadconGridFile theLonGrid;
  
  mutable ossimDrect    theCurrentGridRect;
  ossimFilename theDatumDirectory;
  
  void checkGrid(const ossimDpt& latLon)const;
   
   TYPE_DATA;   
};

#endif