This file is indexed.

/usr/include/ossim/imaging/ossimHistogramWriter.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
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
// 
// Author: Garrett Potts
//
//*************************************************************************
// $Id: ossimHistogramWriter.h 15766 2009-10-20 12:37:09Z gpotts $
#ifndef ossimHistogramWriter_HEADER
#define ossimHistogramWriter_HEADER
#include <ossim/base/ossimOutputSource.h>
#include <ossim/base/ossimIrect.h>
#include <ossim/base/ossimFilename.h>
#include <ossim/base/ossimProcessInterface.h>
#include <ossim/base/ossimObjectEvents.h>
#include <ossim/base/ossimProcessProgressEvent.h>
#include <ossim/base/ossimProcessListener.h>
#include <ossim/base/ossimConnectableObjectListener.h>
#include <ossim/base/ossimConnectionEvent.h>
#include <ossim/base/ossimHistogramSource.h>
#include <ossim/imaging/ossimImageSource.h>

#include <fstream>

class ossimImageSource;
class ossimHistogramWriterProcessListener;
class ossimImageHistogramSource;

class OSSIMDLLEXPORT ossimHistogramWriter : public ossimOutputSource,
                                            public ossimProcessInterface,
                                            public ossimConnectableObjectListener
{
public:
   friend class ossimHistogramWriterProcessListener;
   
   ossimHistogramWriter(ossimImageSource* inputSource=0,
                        ossimObject* owner=0);

   void setAreaOfInterest(const ossimIrect& rect);

   virtual ossimObject* getObject();

   virtual const ossimObject* getObject()const;

   virtual bool execute();
   
   virtual bool isOpen()const;

   /*!
    * open the histogram file for output.  Note if the file was
    * previously open then it will close it and re-opens the
    * file.
    */
   virtual bool open();

   virtual bool open(const ossimFilename& filename);

   virtual void close();

   /*!
    * Overrides the base class and maps the outputName to a filename.
    */
   virtual void setOutputName(const ossimString& outputName);
   
   virtual void setFilename(const ossimFilename& filename);
   
   bool canConnectMyInputTo(ossim_int32 inputIndex,
                            const ossimConnectableObject* object)const;
   
   virtual bool saveState(ossimKeywordlist& kwl,
                          const char* prefix=0)const;

   virtual bool loadState(const ossimKeywordlist& kwl,
                          const char* prefix=0);

   virtual void processProgressEvent(ossimProcessProgressEvent& event);

   virtual void connectInputEvent(ossimConnectionEvent& event);

   virtual void disconnectInputEvent(ossimConnectionEvent& event);

   /**
    * Overrides base to pass on abort to theHistogramSource.
    */ 
   virtual void abort();
   
protected:
   virtual ~ossimHistogramWriter();
   virtual void writeHistogram();
   ossimIrect                           theAreaOfInterest;
   ossimFilename                        theFilename;
   std::ofstream*                       theFileStream;
   ossimHistogramWriterProcessListener* theProcessListener;

   /** stored for abort call only. */
   ossimHistogramSource*                theHistogramSource;
   
TYPE_DATA
};

#endif