summaryrefslogtreecommitdiffstats
path: root/src/extension/extension-forward.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension/extension-forward.h')
-rw-r--r--src/extension/extension-forward.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/extension/extension-forward.h b/src/extension/extension-forward.h
new file mode 100644
index 000000000..f0346b488
--- /dev/null
+++ b/src/extension/extension-forward.h
@@ -0,0 +1,34 @@
+#ifndef SEEN_EXTENSION_FORWARD_H
+#define SEEN_EXTENSION_FORWARD_H
+
+namespace Inkscape {
+namespace Extension {
+
+class Effect;
+class Extension;
+class Input;
+class Output;
+class Print;
+
+class Dependency;
+class Parameter;
+class ExpirationTimer;
+
+namespace Implementation {
+class Implementation;
+}
+
+} }
+
+#endif /* !SEEN_EXTENSION_FORWARD_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 :