This file is indexed.

/usr/include/ossim/base/ossimTextProperty.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 (gpotts@imagelinks.com)
//
//*************************************************************************
// $Id: ossimTextProperty.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimTextProperty_HEADER
#define ossimTextProperty_HEADER
#include <ossim/base/ossimProperty.h>

class OSSIMDLLEXPORT ossimTextProperty : public ossimProperty
{
public:
   ossimTextProperty(const ossimString& name  = ossimString(""),
                     const ossimString& value = ossimString(""),
                     bool isMultiLine = false);
   ossimTextProperty(const ossimTextProperty& rhs);
   virtual ossimObject* dup()const;

   bool isMulitLine()const;
   void setMultiLineFlag(bool flag);

   virtual void valueToString(ossimString& valueResult)const;
  virtual bool setValue(const ossimString& value);
   virtual const ossimProperty& assign(const ossimProperty& rhs);
   
protected:
   ossimString theValue;
   bool theMultiLineFlag;

TYPE_DATA
};

#endif