Code

Filters. New Chromolitho custom predefined filter (experimental). Some UI (notebooks...
[inkscape.git] / src / extension / internal / emf-win32-inout.h
index eff8500493ef97ef1dda3cd8f9d3312fdb4b9094..4b975c8de1b05d6c4226d283c5221e3b88e72f16 100644 (file)
@@ -1,60 +1,57 @@
-/*\r
- * Enhanced Metafile Input/Output.\r
- *\r
- * Authors:\r
- *   Ulf Erikson <ulferikson@users.sf.net>\r
- *\r
- * Copyright (C) 2006 Authors\r
- *\r
- * Released under GNU GPL, read the file 'COPYING' for more information\r
- */\r
-\r
-#ifndef EXTENSION_INTERNAL_EMF_WIN32_H\r
-#define EXTENSION_INTERNAL_EMF_WIN32_H\r
-\r
-#ifdef WIN32\r
-\r
-#include "extension/implementation/implementation.h"\r
-#include "style.h"\r
-\r
-namespace Inkscape {\r
-namespace Extension {\r
-namespace Internal {\r
-\r
-class EmfWin32 : Inkscape::Extension::Implementation::Implementation { //This is a derived class\r
-\r
-public:\r
-    EmfWin32(); // Empty constructor\r
-\r
-    virtual ~EmfWin32();//Destructor\r
-\r
-    bool check(Inkscape::Extension::Extension *module); //Can this module load (always yes for now)\r
-\r
-    void save(Inkscape::Extension::Output *mod, // Save the given document to the given filename\r
-              SPDocument *doc,\r
-              gchar const *uri);\r
-\r
-    virtual SPDocument *open( Inkscape::Extension::Input *mod,\r
-                                const gchar *uri );\r
-\r
-    static void init(void);//Initialize the class\r
-\r
-private:\r
-};\r
-\r
-} } }  /* namespace Inkscape, Extension, Implementation */\r
-\r
-#endif /* WIN32 */\r
-\r
-#endif /* EXTENSION_INTERNAL_EMF_WIN32_H */\r
-\r
-/*\r
-  Local Variables:\r
-  mode:c++\r
-  c-file-style:"stroustrup"\r
-  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))\r
-  indent-tabs-mode:nil\r
-  fill-column:99\r
-  End:\r
-*/\r
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :\r
+/** @file
+ * @brief Enhanced Metafile Input/Output
+ */
+/* Authors:
+ *   Ulf Erikson <ulferikson@users.sf.net>
+ *
+ * Copyright (C) 2006-2008 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+#ifndef SEEN_EXTENSION_INTERNAL_EMF_WIN32_H
+#define SEEN_EXTENSION_INTERNAL_EMF_WIN32_H
+#ifdef WIN32
+
+#include "extension/implementation/implementation.h"
+
+namespace Inkscape {
+namespace Extension {
+namespace Internal {
+
+class EmfWin32 : Inkscape::Extension::Implementation::Implementation { //This is a derived class
+
+public:
+    EmfWin32(); // Empty constructor
+
+    virtual ~EmfWin32();//Destructor
+
+    bool check(Inkscape::Extension::Extension *module); //Can this module load (always yes for now)
+
+    void save(Inkscape::Extension::Output *mod, // Save the given document to the given filename
+              SPDocument *doc,
+              gchar const *filename);
+
+    virtual SPDocument *open( Inkscape::Extension::Input *mod,
+                                const gchar *uri );
+
+    static void init(void);//Initialize the class
+
+private:
+};
+
+} } }  /* namespace Inkscape, Extension, Implementation */
+
+#endif /* WIN32 */
+
+#endif /* EXTENSION_INTERNAL_EMF_WIN32_H */
+
+/*
+  Local Variables:
+  mode:c++
+  c-file-style:"stroustrup"
+  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+  indent-tabs-mode:nil
+  fill-column:99
+  End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :