/usr/include/wxSVG/SVGPoint.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 | //////////////////////////////////////////////////////////////////////////////
// Name: SVGPoint.h
// Author: Alex Thuering
// Copyright: (c) 2005 Alex Thuering
// Licence: wxWindows licence
// Notes: generated by generate.py
//////////////////////////////////////////////////////////////////////////////
#ifndef WX_SVG_POINT_H
#define WX_SVG_POINT_H
#include "SVGMatrix.h"
class wxSVGPoint
{
protected:
double m_x;
double m_y;
public:
inline double GetX() const { return m_x; }
inline void SetX(double n) { m_x = n; }
inline double GetY() const { return m_y; }
inline void SetY(double n) { m_y = n; }
public:
wxSVGPoint(): m_x(0), m_y(0) {}
wxSVGPoint(double x, double y): m_x(x), m_y(y) {}
virtual ~wxSVGPoint() {}
virtual wxSVGPoint MatrixTransform(const wxSVGMatrix& matrix) const;
};
#endif // WX_SVG_POINT_H
|