This file is indexed.

/usr/include/ossim/projection/ossimMapViewController.h is in libossim-dev 1.7.21-4.

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
55
56
57
58
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
// 
// Author: Garrett Potts (gpotts@imagelinks)
//
//*************************************************************************
// $Id: ossimMapViewController.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimMapViewController_HEADER
#define ossimMapViewController_HEADER
#include <ossim/base/ossimViewController.h>
#include <ossim/base/ossimFilename.h>

class ossimMapViewController : public ossimViewController
{
public:
   ossimMapViewController();
   ossimMapViewController(ossimObject* owner,
                          ossim_uint32 inputListSize,
                          ossim_uint32 outputListSize,
                          bool         inputListFixedFlag=true,
                          bool         outputListFixedFlag=false);

   virtual ~ossimMapViewController();
   virtual bool setView(ossimObject* object);
   virtual void changeOwner(ossimObject* owner);
   virtual void setFilename(const ossimFilename& file);
   virtual const ossimFilename& getFilename()const
      {
         return theGeometryFile;
      }
   
   virtual ossimString getShortName()const
      {
         return ossimString("Map View");
      }
   
   virtual ossimString getLongName()const
      {
         return ossimString("Map View controller");
      }
   virtual bool saveState(ossimKeywordlist& kwl,
                          const char* prefix=0)const;

   virtual bool loadState(const ossimKeywordlist& kwl,
                          const char* prefix=0);
protected:

   /*!
    * If the file is not "" (empty) then it will
    * use this filename to load and save the geometry
    * projection.
    */
   ossimFilename theGeometryFile;
   
TYPE_DATA
};
#endif