This file is indexed.

/usr/include/wxSVG/SVGAnimatedString.h is in libwxsvg-dev 2:1.4~dfsg-2+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
//////////////////////////////////////////////////////////////////////////////
// Name:        SVGAnimatedString.h
// Author:      Alex Thuering
// Copyright:   (c) 2005 Alex Thuering
// Licence:     wxWindows licence
// Notes:       generated by genAnimated.py
//////////////////////////////////////////////////////////////////////////////

#ifndef WX_SVG_ANIMATED_STRING_H
#define WX_SVG_ANIMATED_STRING_H

#include "String_wxsvg.h"

class wxSVGAnimatedString
{
  public:
    wxSVGAnimatedString(): m_animVal(NULL) {}
    wxSVGAnimatedString(const wxString& value): m_baseVal(value), m_animVal(NULL) {}
    wxSVGAnimatedString(const wxSVGAnimatedString& value): m_baseVal(value.m_baseVal), m_animVal(NULL)
    { if (value.m_animVal != NULL) m_animVal = new wxString(*value.m_animVal); }
    ~wxSVGAnimatedString() { ResetAnimVal(); }
    
    inline wxSVGAnimatedString& operator=(const wxSVGAnimatedString& value)
    { m_baseVal = value.m_baseVal; m_animVal = value.m_animVal != NULL ? new wxString(*value.m_animVal) : NULL; return *this; }
    
    inline wxString& GetBaseVal() { return m_baseVal; }
    inline const wxString& GetBaseVal() const { return m_baseVal; }
    inline void SetBaseVal(const wxString& value) { m_baseVal = value; ResetAnimVal(); }
    
    inline wxString& GetAnimVal()
    {
      if (!m_animVal)
        m_animVal = new wxString(m_baseVal);
      return *m_animVal;
    }
    inline const wxString& GetAnimVal() const
    {
        return m_animVal ? *m_animVal : m_baseVal;
    }
    inline void SetAnimVal(const wxString& value)
    {
      if (!m_animVal)
        m_animVal = new wxString(value);
      else
        *m_animVal = value;
    }
    inline void ResetAnimVal()
    {
      if (m_animVal)
      {
        delete m_animVal;
        m_animVal = NULL;
      }
    }
    
  public:
    inline operator const wxString&() const { return GetAnimVal(); }
    
  protected:
    wxString m_baseVal;
    wxString* m_animVal;
};


#endif // WX_SVG_ANIMATED_STRING_H