This file is indexed.

/usr/include/ossim/base/ossimRefreshEvent.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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
// 
// Author: Garrett Potts 
// Description: A brief description of the contents of the file.
//
//
//*************************************************************************
// $Id: ossimRefreshEvent.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimRefreshEvent_HEADER
#define ossimRefreshEvent_HEADER
#include <ossim/base/ossimEvent.h>

class OSSIMDLLEXPORT ossimRefreshEvent : public ossimEvent
{
public:

   ossimRefreshEvent(ossimObject* object=NULL)  // the object associated with the event if any
      :ossimEvent(object, OSSIM_EVENT_REFRESH_ID)
      {}
   ossimRefreshEvent(const ossimRefreshEvent& rhs)
      :ossimEvent(rhs)
      {
      }
   virtual ossimObject* dup()const
      {
         return new ossimRefreshEvent(*this);
      }
 
TYPE_DATA
};

#endif