This file is indexed.

/usr/include/ossim/imaging/ossimElevRemapper.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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
//
// Author:  RP
//
// Description:
//
// 
//*******************************************************************
//  $Id$
#ifndef ossimElevRemapper_HEADER
#define ossimElevRemapper_HEADER
#include <ossim/imaging/ossimImageSourceFilter.h>

class OSSIM_DLL ossimElevRemapper : public ossimImageSourceFilter
{
public:
   static const char REMAP_MODE_KW[];

   enum ReplacementType
   {
      ReplacementType_ELLIPSOID = 0,
      ReplacementType_GEOID = 1
   };
   
   ossimElevRemapper();
   virtual void initialize();
   virtual ossimRefPtr<ossimImageData> getTile(const ossimIrect& tile_rect,
                                               ossim_uint32 resLevel=0);
   
protected:
   virtual ~ossimElevRemapper();
   template <class T> void elevRemap(T dummy,
                                      ossimImageData* inpuTile,
                                      ossim_uint32 resLevel);
   
   ReplacementType m_replacementType;
   bool saveState(ossimKeywordlist& kwl, const char* prefix)const;
   bool loadState(const ossimKeywordlist& kwl, const char* prefix);
   ossimRefPtr<ossimImageGeometry> m_imageGeometry;

TYPE_DATA   
};
#endif