Code

2geomify, remove warnings and other fixes
[inkscape.git] / src / extension / internal / emf-win32-inout.h
1 /*
2  * Enhanced Metafile Input/Output.
3  *
4  * Authors:
5  *   Ulf Erikson <ulferikson@users.sf.net>
6  *
7  * Copyright (C) 2006-2008 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef EXTENSION_INTERNAL_EMF_WIN32_H
13 #define EXTENSION_INTERNAL_EMF_WIN32_H
15 #ifdef WIN32
17 #include "extension/implementation/implementation.h"
19 namespace Inkscape {
20 namespace Extension {
21 namespace Internal {
23 class EmfWin32 : Inkscape::Extension::Implementation::Implementation { //This is a derived class
25 public:
26     EmfWin32(); // Empty constructor
28     virtual ~EmfWin32();//Destructor
30     bool check(Inkscape::Extension::Extension *module); //Can this module load (always yes for now)
32     void save(Inkscape::Extension::Output *mod, // Save the given document to the given filename
33               SPDocument *doc,
34               gchar const *uri);
36     virtual SPDocument *open( Inkscape::Extension::Input *mod,
37                                 const gchar *uri );
39     static void init(void);//Initialize the class
41 private:
42 };
44 } } }  /* namespace Inkscape, Extension, Implementation */
46 #endif /* WIN32 */
48 #endif /* EXTENSION_INTERNAL_EMF_WIN32_H */
50 /*
51   Local Variables:
52   mode:c++
53   c-file-style:"stroustrup"
54   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
55   indent-tabs-mode:nil
56   fill-column:99
57   End:
58 */
59 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :