/usr/include/wxSVG/SVGAnimatedRect.h is in libwxsvg-dev 2:1.2~dfsg0-1ubuntu1.
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: SVGAnimatedRect.h
// Author: Alex Thuering
// Copyright: (c) 2005 Alex Thuering
// Licence: wxWindows licence
// Notes: generated by genAnimated.py
//////////////////////////////////////////////////////////////////////////////
#ifndef WX_SVG_ANIMATED_RECT_H
#define WX_SVG_ANIMATED_RECT_H
#include "SVGRect.h"
class wxSVGAnimatedRect
{
public:
wxSVGAnimatedRect(): m_animVal(NULL) {}
wxSVGAnimatedRect(const wxSVGRect& value): m_baseVal(value), m_animVal(NULL) {}
wxSVGAnimatedRect(const wxSVGAnimatedRect& value): m_baseVal(value.m_baseVal), m_animVal(NULL)
{ if (value.m_animVal != NULL) m_animVal = new wxSVGRect(*value.m_animVal); }
~wxSVGAnimatedRect() { ResetAnimVal(); }
inline wxSVGAnimatedRect& operator=(const wxSVGAnimatedRect& value)
{ m_baseVal = value.m_baseVal; m_animVal = value.m_animVal != NULL ? new wxSVGRect(*value.m_animVal) : NULL; return *this; }
inline wxSVGRect& GetBaseVal() { return m_baseVal; }
inline const wxSVGRect& GetBaseVal() const { return m_baseVal; }
inline void SetBaseVal(const wxSVGRect& value) { m_baseVal = value; ResetAnimVal(); }
inline wxSVGRect& GetAnimVal()
{
if (!m_animVal)
m_animVal = new wxSVGRect(m_baseVal);
return *m_animVal;
}
inline const wxSVGRect& GetAnimVal() const
{
return m_animVal ? *m_animVal : m_baseVal;
}
inline void SetAnimVal(const wxSVGRect& value)
{
if (!m_animVal)
m_animVal = new wxSVGRect(value);
else
*m_animVal = value;
}
inline void ResetAnimVal()
{
if (m_animVal)
{
delete m_animVal;
m_animVal = NULL;
}
}
public:
inline operator const wxSVGRect&() const { return GetAnimVal(); }
protected:
wxSVGRect m_baseVal;
wxSVGRect* m_animVal;
};
#endif // WX_SVG_ANIMATED_RECT_H
|