This file is indexed.

/usr/include/ossim/projection/ossimNitfRsmModel.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//---
// File: ossimNitfRsmModel.h
//---
#ifndef ossimNitfRsmModel_HEADER
#define ossimNitfRsmModel_HEADER 1

#include <ossim/projection/ossimRsmModel.h>

class ossimNitfImageHeader;
class ossimNitfRsmecaTag;
class ossimNitfRsmidaTag;
class ossimNitfRsmpcaTag;
class ossimNitfRsmpiaTag;

/**
 * @class ossimNitfRsmModel
 */
class OSSIM_DLL ossimNitfRsmModel : public ossimRsmModel
{
public:

   /** @brief default constructor */
   ossimNitfRsmModel();

   /** @brief copy constructor */
   ossimNitfRsmModel( const ossimNitfRsmModel& obj );

   /** @brief assignment operator */
   const ossimNitfRsmModel& operator=( const ossimNitfRsmModel& rhs );

   virtual bool parseFile(const ossimFilename& nitfFile,
                          ossim_uint32 entryIndex=0);

   virtual bool parseImageHeader(const ossimNitfImageHeader* ih);

   bool getRsmData(const ossimNitfImageHeader* ih);

   /**
    * @brief saveState
    * Fulfills ossimObject base-class pure virtuals. Loads and saves geometry
    * KWL files. Returns true if successful.
    */
   virtual bool saveState(ossimKeywordlist& kwl,
                          const char* prefix=0) const;
   
   /**
    * @brief loadState
    * Fulfills ossimObject base-class pure virtuals. Loads and saves geometry
    * KWL files. Returns true if successful.
    */
   virtual bool loadState(const ossimKeywordlist& kwl,
                          const char* prefix=0);

   /**
    * @brief dup()
    * Returns pointer to a new instance, copy of this.
    */
   virtual ossimObject* dup() const;

   /**
    * @brief Initializes model from RSMECA tag.
    * @param rsmecaTag
    */
   bool initializeModel( const ossimNitfRsmecaTag* rsmecaTag );

protected:
   /** @brief virtual destructor */
   virtual ~ossimNitfRsmModel();

   TYPE_DATA
      
}; // End: class ossimRsmModel

#endif /* #ifndef ossimNitfRsmModel_HEADER */