This file is indexed.

/usr/include/ossim/base/ossimDirectoryData.h is in libossim-dev 1.7.21-4.

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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
//
// Author: Garrett Potts (gpotts@imagelinks)
// 
// Description:
// Class designed to be used by ossimDirectory class.  Should not be used
// directly.
//
//*************************************************************************
// $Id: ossimDirectoryData.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimDirectoryData_HEADER
#define ossimDirectoryData_HEADER

#ifndef _MSC_VER

#include <dirent.h>
#include <ossim/base/ossimFilename.h>

class OSSIMDLLEXPORT ossimDirectoryData
{
 public:
   ossimDirectoryData(const ossimFilename& dirname);
   ~ossimDirectoryData();
   
   bool isOk() const { return theDir != NULL; }
   
   void setFlags(int flags);
   int  getFlags() const;
   
   void rewind();
   bool read(ossimFilename &filename);
   
 private:
   DIR*          theDir;
   ossimFilename theDirectoryName;
   int           theFlags;
};

#endif /* #ifndef _MSC_VER */

#endif /* #ifndef ossimDirectoryData_HEADER */