Code

Filters. Some custom predefined filters fixes and tweaks (Silhouette and Neon Draw).
[inkscape.git] / src / extension / internal / emf-win32-inout.h
1 /** @file
2  * @brief 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  */
11 #ifndef SEEN_EXTENSION_INTERNAL_EMF_WIN32_H
12 #define SEEN_EXTENSION_INTERNAL_EMF_WIN32_H
13 #ifdef WIN32
15 #include "extension/implementation/implementation.h"
17 namespace Inkscape {
18 namespace Extension {
19 namespace Internal {
21 class EmfWin32 : Inkscape::Extension::Implementation::Implementation { //This is a derived class
23 public:
24     EmfWin32(); // Empty constructor
26     virtual ~EmfWin32();//Destructor
28     bool check(Inkscape::Extension::Extension *module); //Can this module load (always yes for now)
30     void save(Inkscape::Extension::Output *mod, // Save the given document to the given filename
31               SPDocument *doc,
32               gchar const *filename);
34     virtual SPDocument *open( Inkscape::Extension::Input *mod,
35                                 const gchar *uri );
37     static void init(void);//Initialize the class
39 private:
40 };
42 } } }  /* namespace Inkscape, Extension, Implementation */
44 #endif /* WIN32 */
46 #endif /* EXTENSION_INTERNAL_EMF_WIN32_H */
48 /*
49   Local Variables:
50   mode:c++
51   c-file-style:"stroustrup"
52   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
53   indent-tabs-mode:nil
54   fill-column:99
55   End:
56 */
57 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :