/usr/include/wxSVG/imagsvg.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: imagsvg.h
// Purpose: SVG Image Handler
// Author: Alex Thuering
// Created: 2011/11/22
// RCS-ID: $Id: imagsvg.h,v 1.1 2011/11/22 20:08:35 ntalex Exp $
// Copyright: (c) Alex Thuering
// Licence: wxWindows licence
//////////////////////////////////////////////////////////////////////////////
#ifndef IMAGE_SVG_H
#define IMAGE_SVG_H
#include <wx/image.h>
#define wxBITMAP_TYPE_SVG 45
class wxSVGHandler: public wxImageHandler {
public:
wxSVGHandler();
virtual ~wxSVGHandler();
#if wxUSE_STREAMS
virtual bool LoadFile(wxImage *image, wxInputStream& stream, bool verbose = true, int index = -1);
virtual bool SaveFile(wxImage *image, wxOutputStream& stream, bool verbose = true);
protected:
virtual bool DoCanRead(wxInputStream& stream);
#endif
private:
DECLARE_DYNAMIC_CLASS(wxImageHandler)
};
#endif // IMAGE_SVG_H
|