diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2011-10-04 06:49:12 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2011-10-04 06:49:12 +0000 |
| commit | 8a1cacd44e5db6437463e31dca2b4e5d4893d075 (patch) | |
| tree | 729d3e6e43ed9b809b4580962f251cf098696f7a /src/extension/extension.h | |
| parent | Purging some forward.h files. (diff) | |
| download | inkscape-8a1cacd44e5db6437463e31dca2b4e5d4893d075.tar.gz inkscape-8a1cacd44e5db6437463e31dca2b4e5d4893d075.zip | |
More forward.h purging.
(bzr r10665)
Diffstat (limited to 'src/extension/extension.h')
| -rw-r--r-- | src/extension/extension.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/extension/extension.h b/src/extension/extension.h index eddddf62c..273bc79e4 100644 --- a/src/extension/extension.h +++ b/src/extension/extension.h @@ -1,5 +1,5 @@ -#ifndef __INK_EXTENSION_H__ -#define __INK_EXTENSION_H__ +#ifndef INK_EXTENSION_H +#define INK_EXTENSION_H /** \file * Frontend to certain, possibly pluggable, actions. @@ -22,7 +22,6 @@ #include <gtkmm/table.h> #include <glibmm/ustring.h> #include "xml/repr.h" -#include "extension/extension-forward.h" /** The key that is used to identify that the I/O should be autodetected */ #define SP_MODULE_KEY_AUTODETECT "autodetect" @@ -68,6 +67,17 @@ struct SPDocument; namespace Inkscape { namespace Extension { +class Dependency; +class ExpirationTimer; +class ExpirationTimer; +class Parameter; + +namespace Implementation +{ +class Implementation; +} + + /** The object that is the basis for the Extension system. This object contains all of the information that all Extension have. The individual items are detailed within. This is the interface that @@ -163,7 +173,7 @@ public: private: void make_param (Inkscape::XML::Node * paramrepr); - Parameter * get_param (const gchar * name); + Parameter * get_param (const gchar * name); public: bool get_param_bool (const gchar * name, @@ -269,7 +279,7 @@ public: } /* namespace Extension */ } /* namespace Inkscape */ -#endif /* __INK_EXTENSION_H__ */ +#endif // INK_EXTENSION_H /* Local Variables: |
