This file is indexed.

/usr/include/ossim/imaging/ossimImageGeometryRegistry.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
//**************************************************************************************************
//
// License:  MIT
// 
// See LICENSE.txt file in the top level directory for more details.
//
// Description: Class declaration of ossimImageGeometryRegistry. See .h file for class documentation.
//
//**************************************************************************************************
// $Id$
#ifndef ossimImageGeometryRegistry_HEADER
#define ossimImageGeometryRegistry_HEADER
#include <ossim/base/ossimConstants.h>
#include <ossim/imaging/ossimImageGeometryFactoryBase.h>
#include <ossim/imaging/ossimImageGeometry.h>
#include <ossim/base/ossimFactoryListInterface.h>
class OSSIM_DLL ossimImageGeometryRegistry : public ossimImageGeometryFactoryBase,
                                             public ossimFactoryListInterface<ossimImageGeometryFactoryBase,
                                                                              ossimImageGeometry>
{
public:
   virtual ~ossimImageGeometryRegistry(){m_instance=0;}
   static ossimImageGeometryRegistry* instance();
   
   
   virtual ossimImageGeometry* createGeometry(const ossimString& typeName)const;
   virtual ossimImageGeometry* createGeometry(const ossimKeywordlist& kwl,
                                              const char* prefix=0)const;
   virtual ossimImageGeometry* createGeometry(const ossimFilename& filename,
                                              ossim_uint32 entryIdx)const;
#if 0
   /*!
    * Creates an object given a type name.
    */
   virtual ossimObject* createObject(const ossimString& typeName)const
   {
      return createObjectFromRegistry(typeName);
   }
   
   /*!
    * Creates and object given a keyword list.
    */
   virtual ossimObject* createObject(const ossimKeywordlist& kwl,
                                     const char* prefix=0)const
   {
      return createObjectFromRegistry(kwl, prefix);
   }
#endif
   virtual bool extendGeometry(ossimImageHandler* handler)const;
   
   /*!
    * This should return the type name of all objects in all factories.
    * This is the name used to construct the objects dynamially and this
    * name must be unique.
    */
   virtual void getTypeNameList(std::vector<ossimString>& typeList)const
   {
      getAllTypeNamesFromRegistry(typeList);
   }
   
protected:
   ossimImageGeometryRegistry()
   :ossimImageGeometryFactoryBase()
   {}
   
   ossimImageGeometryRegistry( const ossimImageGeometryRegistry& rhs )
   :ossimImageGeometryFactoryBase(rhs)
   {}
   void operator =(const ossimImageGeometryRegistry&){}
   static ossimImageGeometryRegistry* m_instance;
   
   TYPE_DATA
};
#endif