This file is indexed.

/usr/include/ossim/elevation/ossimElevationDatabaseRegistry.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
#ifndef ossimElevationDatabaseRegistry_HEADER
#define ossimElevationDatabaseRegistry_HEADER
#include <ossim/elevation/ossimElevationDatabaseFactoryBase.h>
#include <ossim/elevation/ossimElevationDatabase.h>
#include <ossim/base/ossimFactoryListInterface.h>

/**
*
* This is the elevation database registry.  
* @see ossimElevationDatabaseFactory for more details on the factories
* supported within the ossim core.
*
*/
class OSSIM_DLL ossimElevationDatabaseRegistry : public ossimFactoryListInterface<ossimElevationDatabaseFactoryBase, ossimElevationDatabase>

{
public:
   ossimElevationDatabaseRegistry()
   {
      m_instance = 0;
   }
   static ossimElevationDatabaseRegistry* instance();
   void getTypeNameList(std::vector<ossimString>& typeList) const 
   {
      getAllTypeNamesFromRegistry(typeList);
   }
   /**
   * @param typeName is the type name of the database you wish to
   *        create
   * @return the elevation database or null otherwise
   */
   ossimElevationDatabase* createDatabase(const ossimString& typeName)const;
   
   /**
   * @param kwl kewyord list that has state information about how to
   *        create a database
   * @param prefix prefix key to use when loading the state information.
   * @return the elevation database or null otherwise
   */
   ossimElevationDatabase* createDatabase(const ossimKeywordlist& kwl,
                                          const char* prefix=0)const;

   /**
   * @param connectionString used to determine which database can support
   *        that connection.
   * @return the elevation database or null otherwise
   */
   ossimElevationDatabase* open(const ossimString& connectionString);

protected:
   static ossimElevationDatabaseRegistry* m_instance;
};
#endif