/usr/include/wxSVG/SVGAnimatedPreserveAspectRatio.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: SVGAnimatedPreserveAspectRatio.h
// Author: Alex Thuering
// Copyright: (c) 2005 Alex Thuering
// Licence: wxWindows licence
// Notes: generated by genAnimated.py
//////////////////////////////////////////////////////////////////////////////
#ifndef WX_SVG_ANIMATED_PRESERVE_ASPECT_RATIO_H
#define WX_SVG_ANIMATED_PRESERVE_ASPECT_RATIO_H
#include "SVGPreserveAspectRatio.h"
class wxSVGAnimatedPreserveAspectRatio
{
public:
wxSVGAnimatedPreserveAspectRatio(): m_animVal(NULL) {}
wxSVGAnimatedPreserveAspectRatio(const wxSVGPreserveAspectRatio& value): m_baseVal(value), m_animVal(NULL) {}
wxSVGAnimatedPreserveAspectRatio(const wxSVGAnimatedPreserveAspectRatio& value): m_baseVal(value.m_baseVal), m_animVal(NULL)
{ if (value.m_animVal != NULL) m_animVal = new wxSVGPreserveAspectRatio(*value.m_animVal); }
~wxSVGAnimatedPreserveAspectRatio() { ResetAnimVal(); }
inline wxSVGAnimatedPreserveAspectRatio& operator=(const wxSVGAnimatedPreserveAspectRatio& value)
{ m_baseVal = value.m_baseVal; m_animVal = value.m_animVal != NULL ? new wxSVGPreserveAspectRatio(*value.m_animVal) : NULL; return *this; }
inline wxSVGPreserveAspectRatio& GetBaseVal() { return m_baseVal; }
inline const wxSVGPreserveAspectRatio& GetBaseVal() const { return m_baseVal; }
inline void SetBaseVal(const wxSVGPreserveAspectRatio& value) { m_baseVal = value; ResetAnimVal(); }
inline wxSVGPreserveAspectRatio& GetAnimVal()
{
if (!m_animVal)
m_animVal = new wxSVGPreserveAspectRatio(m_baseVal);
return *m_animVal;
}
inline const wxSVGPreserveAspectRatio& GetAnimVal() const
{
return m_animVal ? *m_animVal : m_baseVal;
}
inline void SetAnimVal(const wxSVGPreserveAspectRatio& value)
{
if (!m_animVal)
m_animVal = new wxSVGPreserveAspectRatio(value);
else
*m_animVal = value;
}
inline void ResetAnimVal()
{
if (m_animVal)
{
delete m_animVal;
m_animVal = NULL;
}
}
public:
inline operator const wxSVGPreserveAspectRatio&() const { return GetAnimVal(); }
protected:
wxSVGPreserveAspectRatio m_baseVal;
wxSVGPreserveAspectRatio* m_animVal;
};
#endif // WX_SVG_ANIMATED_PRESERVE_ASPECT_RATIO_H
|