This file is indexed.

/usr/include/ossim/imaging/ossimImageMetaDataWriterFactoryBase.h is in libossim-dev 1.7.21-3ubuntu2.

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
//----------------------------------------------------------------------------
// License:  LGPL
// 
// See LICENSE.txt file in the top level directory for more details.
//----------------------------------------------------------------------------
// $Id: ossimImageMetaDataWriterFactoryBase.h 9094 2006-06-13 19:12:40Z dburken $
#ifndef ossimImageMetaDataWriterFactoryBase_HEADER
#define ossimImageMetaDataWriterFactoryBase_HEADER
#include <ossim/base/ossimObjectFactory.h>
#include <ossim/base/ossimRefPtr.h>

class ossimMetadataFileWriter;

class ossimImageMetaDataWriterFactoryBase : public ossimObjectFactory
{
public:
   /**
    * Pure virtual.  All ossimImageMetaDataWriterFactories must implement.
    * 
    * Creates a writer from either a class name or a string representing the
    * meta data type like "tiff_world_file".
    *
    * @return ossimRefPtr<ossimMetadataFileWriter>
    *
    * @note Return can have a null pointer if type is not found in a factory so
    * the caller should always check the pointer like:
    * ossimRefPtr<ossimMetadataFileWriter> mw =
    *    ossimImageMetaDataWriterRegistry::instance("ossim_readme");
    * if (!mw.valid())
    * {
    *    // not in factory
    * }
    */
   virtual ossimRefPtr<ossimMetadataFileWriter> createWriter(
      const ossimString& type)const=0;

   /**
    * Pure virtual.  All ossimImageMetaDataWriterFactories must implement.
    * 
    * Appends the meta data writers types to the "metadatatypeList".
    * 
    * This is the actual metadata type name like:
    *   ossim_geometry
    *   envi_header
    *   tiff_world_file
    *   jpeg_world_file
    *   
    * @param metadatatypeList stl::vector<ossimString> List to append to.
    *
    * @note All writers should append to the list, not, clear it and then add
    * their types.
    */
   virtual void getMetadatatypeList(
      std::vector<ossimString>& metadatatypeList) const=0;

protected:
   ossimImageMetaDataWriterFactoryBase();
   
   ossimImageMetaDataWriterFactoryBase(
      const ossimImageMetaDataWriterFactoryBase&);
   
   const ossimImageMetaDataWriterFactoryBase& operator=(
      const ossimImageMetaDataWriterFactoryBase&);

TYPE_DATA
};
#endif