This file is indexed.

/usr/include/ossim/base/ossimXmlString.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//*******************************************************************
//
// License:  See top level LICENSE.txt file.
// 
// Author: Garrett Potts
// Description: This class provides manipulation of filenames.
//
//*************************************************************************
// $Id: ossimXmlString.h 22328 2013-07-25 17:17:52Z gpotts $

#ifndef ossimXmlString_HEADER
#define ossimXmlString_HEADER

#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimString.h>

class OSSIM_DLL ossimXmlString : public ossimString
{
public:
   ossimXmlString()
      :
         ossimString()
      {}
   ossimXmlString(const ossimXmlString& src)
      :
         ossimString(src)
      {}
   ossimXmlString(const ossimString& src)
      :
         ossimString("")
      {
         assign(src);

      }
   ossimXmlString(const char* src)
      :
         ossimString("")
      {
         assign(src);
      }
   
   template <class Iter>
   ossimXmlString(Iter s, Iter e)
      :ossimString("")
      {
         assign(ossimString(s, e));
      }

   const ossimXmlString& operator =(const char* s)
      {
         return assign(ossimString(s));
      }
   	  const ossimXmlString& operator =(const ossimString& s)
      {
         return assign(ossimString(s));
      }
	  const ossimXmlString& operator =(const std::string& s)
      {
         return assign(ossimString(s));
      }
   static ossimString wrapCDataIfNeeded(const ossimString& input);
   static ossimString wrapCData(const ossimString& input);
   static bool containsSpecialXmlCharacters(const ossimString& value);
   const ossimXmlString& assign(const ossimString& s);
};

#endif