This file is indexed.

/usr/include/wxSVG/Animated.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
//////////////////////////////////////////////////////////////////////////////
// Name:        Animated.h
// Purpose:     
// Author:      Alex Thuering
// Created:     2005/05/07
// RCS-ID:      $Id: Animated.h,v 1.3 2007/09/21 06:47:34 etisserant Exp $
// Copyright:   (c) 2005 Alex Thuering
// Licence:     wxWindows licence
//////////////////////////////////////////////////////////////////////////////

#ifndef WXSVG_ANIMATED_H
#define WXSVG_ANIMATED_H

#include "String_wxsvg.h"

#define WXSVG_MAKE_ANIMATED(X, T) class wxSVGAnimated##X\
{\
  public:\
    inline T& GetBaseVal() { return m_baseVal; }\
	inline const T& GetBaseVal() const { return m_baseVal; }\
	inline void SetBaseVal(const T& value) { m_baseVal = m_animVal = value; }\
    \
	inline T& GetAnimVal() { return m_animVal; }\
	inline const T& GetAnimVal() const { return m_animVal; }\
    inline void SetAnimVal(const T& value) { m_animVal = value; }\
    \
  public:\
    inline operator const T&() const { return GetBaseVal(); }\
    \
  protected:\
    T m_baseVal;\
    T m_animVal;\
};

#define WXSVG_MAKE_ANIMATED_NUMBER(X, T) class wxSVGAnimated##X\
{\
  public:\
    wxSVGAnimated##X(): m_baseVal(0), m_animVal(0) {}\
	\
    inline T GetBaseVal() const { return m_baseVal; };\
	inline void SetBaseVal(T value) { m_baseVal = m_animVal = value; }\
	\
    inline T GetAnimVal() const { return m_animVal; }\
	inline void SetAnimVal(T value) { m_animVal = value; }\
    \
  public:\
    inline operator T() const { return GetBaseVal(); }\
    \
  protected:\
    T m_baseVal;\
    T m_animVal;\
};


#endif // WXSVG_ANIMATED_H