This file is indexed.

/usr/include/ossim/base/ossimBooleanProperty.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
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
//
// Author: Garrett Potts
//
//*************************************************************************
// $Id: ossimBooleanProperty.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimBoolenaProperty_HEADER
#define ossimBoolenaProperty_HEADER
#include <ossim/base/ossimProperty.h>

class OSSIMDLLEXPORT ossimBooleanProperty : public ossimProperty
{
public:
   ossimBooleanProperty(const ossimString& name=ossimString(""),
                        bool value = false);
   ossimBooleanProperty(const ossimBooleanProperty& rhs);
   virtual ossimObject* dup()const;
   virtual const ossimProperty& assign(const ossimProperty& rhs);
   virtual bool setValue(const ossimString& value);
   bool setBooleanValue(bool value,
			ossimString& msg);
   void valueToString(ossimString& valueResult)const;
   bool getBoolean()const;
   
protected:
   bool theValue;

TYPE_DATA
};

#endif