This file is indexed.

/usr/include/ossim/base/ossimNadconGridFile.h is in libossim-dev 2.2.2-1.

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
//**************************************************************************
// Copyright (C) 2003 Storage Area Networks, Inc.
//
// Written by:   Kenneth Melero  <kmelero@sanz.com>
//
//**************************************************************************

#ifndef ossimNadconGridFile_HEADER
#define ossimNadconGridFile_HEADER 1
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimNadconGridHeader.h>
#include <fstream>

class OSSIM_DLL ossimNadconGridFile
{
public:
   ossimNadconGridFile() : theFileOkFlag(false) {}
   ~ossimNadconGridFile();
   bool open(const ossimFilename& file);
   void close();
   
   /*!
    */
   double getShiftAtLatLon(double lat, double lon)const;
   bool pointWithin(double lat, double lon)const;
   const ossimDrect getBoundingRect()const
   {
      return theBoundingRect;
   }
   
   const ossimFilename& getFilename()const
   {
      return theFilename;
   }
   bool getFileOkFlag()const
   {
      return theFileOkFlag;
   }
   ossimDpt getSpacing()const
   {
      return theHeader.getSpacing();
   }
   
protected:
   mutable std::ifstream theInputFile;
   mutable bool          theFileOkFlag;
   ossimFilename         theFilename;
   ossimNadconGridHeader theHeader;
   ossimDrect            theBoundingRect;
   ossimDpt              theLatLonOrigin;

};

#endif