This file is indexed.

/usr/include/ossim/plugin/ossimPluginLibrary.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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
// 
// Author: Garrett Potts (gpotts@imagelinks)
//
//*************************************************************************
// $Id: ossimPluginLibrary.h 20694 2012-03-19 12:22:05Z dburken $
#ifndef ossimPluginLibrary_HEADER
#define ossimPluginLibrary_HEADER 1
#include <ossim/plugin/ossimSharedObjectBridge.h>
#include <ossim/plugin/ossimDynamicLibrary.h>

class OSSIMDLLEXPORT ossimPluginLibrary : public ossimDynamicLibrary
{
public:
   ossimPluginLibrary();
   ossimPluginLibrary(const ossimString& name, const ossimString& options="");
   virtual ~ossimPluginLibrary();
   void initialize();
   void finalize();
   ossimString getDescription()const;
   void getClassNames(std::vector<ossimString>& classNames)const;
   void setOptions(const ossimString& options);
protected:
   ossimString m_options;
   ossimSharedObjectInfo* m_info;
};

#endif