diff options
Diffstat (limited to 'src/sp-defs.h')
| -rw-r--r-- | src/sp-defs.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/sp-defs.h b/src/sp-defs.h new file mode 100644 index 000000000..4b6f7a5b7 --- /dev/null +++ b/src/sp-defs.h @@ -0,0 +1,44 @@ +#ifndef SEEN_SP_DEFS_H +#define SEEN_SP_DEFS_H + +/* + * SVG <defs> implementation + * + * Authors: + * Lauris Kaplinski <lauris@kaplinski.com> + * + * Copyright (C) 2000-2002 authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "sp-object.h" + +#define SP_TYPE_DEFS (sp_defs_get_type()) +#define SP_DEFS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_DEFS, SPDefs)) +#define SP_DEFS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_DEFS, SPDefsClass)) +#define SP_IS_DEFS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_DEFS)) +#define SP_IS_DEFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_DEFS)) + +struct SPDefs : public SPObject { +}; + +struct SPDefsClass { + SPObjectClass parent_class; +}; + +GType sp_defs_get_type(void); + + +#endif /* !SEEN_SP_DEFS_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 : |
