Code

Win32 post-GSoC fixups.
[inkscape.git] / src / extension / internal / svg.h
1 /*
2  * This is the code that moves all of the SVG loading and saving into
3  * the module format.  Really Sodipodi is built to handle these formats
4  * internally, so this is just calling those internal functions.
5  *
6  * Authors:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   Ted Gould <ted@gould.cx>
9  *
10  * Copyright (C) 2002-2003 Authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #ifndef __SVG_H__
16 #define __SVG_H__
18 #include "../implementation/implementation.h"
20 namespace Inkscape {
21 namespace Extension {
22 namespace Internal {
24 class Svg : public Inkscape::Extension::Implementation::Implementation {
26 public:
27     virtual void        save( Inkscape::Extension::Output *mod,
28                                SPDocument *doc,
29                                gchar const *filename );
30     virtual SPDocument *open( Inkscape::Extension::Input *mod,
31                                 const gchar *uri );
32     static void         init( void );
34 };
36 } } }  /* namespace Inkscape, Extension, Implementation */
37 #endif /* __SVG_H__ */
39 /*
40   Local Variables:
41   mode:c++
42   c-file-style:"stroustrup"
43   c-file-offsets:((innamespace . 0)(inline-open . 0))
44   indent-tabs-mode:nil
45   fill-column:99
46   End:
47 */
48 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :