This file is indexed.

/usr/include/ossim/base/ossimStreamBase.h is in libossim-dev 1.8.16-3+b1.

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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
//
// Author: Garrett Potts
//
// Description:
// Base class for all ossim streams...  Derives from ossimReferenced.
//
//*******************************************************************
//  $Id: ossimStreamBase.h 11176 2007-06-07 19:45:56Z dburken $
//
#ifndef ossimStreamBase_HEADER
#define ossimStreamBase_HEADER

#include <ossim/base/ossimConstants.h>  /* for OSSIM_DLL */
#include <ossim/base/ossimReferenced.h> /* for base class */

class OSSIM_DLL ossimStreamBase : public ossimReferenced
{
public:
   /** @brief default constructor */
   ossimStreamBase();

   /** @brief virtual destructor */
   virtual ~ossimStreamBase();

   /**
    * @brief isCompressed method.
    * @return true if compressed false if not compressed.
    * @note This default implementation returns false.  Derived classes should
    * override if needed.
    */
   virtual bool isCompressed() const;
};
#endif /* end of "#ifndef ossimStreamBase_HEADER" */