Code

Cleaned up virtual destructor problem and compile warnings.
[inkscape.git] / src / extension / internal / libwpg / WPGraphics.h
1 /* libwpg\r
2  * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)\r
3  *\r
4  * This library is free software; you can redistribute it and/or\r
5  * modify it under the terms of the GNU Library General Public\r
6  * License as published by the Free Software Foundation; either\r
7  * version 2 of the License, or (at your option) any later version.\r
8  *\r
9  * This library is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
12  * Library General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU Library General Public\r
15  * License along with this library; if not, write to the \r
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, \r
17  * Boston, MA  02111-1301 USA\r
18  *\r
19  * For further information visit http://libwpg.sourceforge.net\r
20  */\r
21 \r
22 /* "This product is not manufactured, approved, or supported by\r
23  * Corel Corporation or Corel Corporation Limited."\r
24  */\r
25 \r
26 #ifndef __WPGRAPHICS_H__\r
27 #define __WPGRAPHICS_H__\r
28 \r
29 namespace libwpg\r
30 {\r
31 \r
32 class WPGInputStream;\r
33 class WPGPaintInterface;\r
34 \r
35 class WPGraphics\r
36 {\r
37 public:\r
38         \r
39         static bool isSupported(WPGInputStream* input);\r
40         \r
41         static bool parse(WPGInputStream* input, WPGPaintInterface* painter);\r
42 };\r
43 \r
44 } // namespace libwpg\r
45 \r
46 #endif //  __WPGRAPHICS_H__\r