diff options
| author | Jeff Schiller <codedread@gmail.com> | 2008-08-23 06:13:23 +0000 |
|---|---|---|
| committer | jeff_schiller <jeff_schiller@users.sourceforge.net> | 2008-08-23 06:13:23 +0000 |
| commit | 7dba27edc91ec41f0ab7fa30aab75c31e97a1947 (patch) | |
| tree | ff29af2d0b0b053f4464a94eff8978bbdcf13dfe /src/sp-title.h | |
| parent | Hopefully fix for the recently experienced crashes when building with -O2. I ... (diff) | |
| download | inkscape-7dba27edc91ec41f0ab7fa30aab75c31e97a1947.tar.gz inkscape-7dba27edc91ec41f0ab7fa30aab75c31e97a1947.zip | |
Support for title and desc elements when serializing as Plain SVG.
(bzr r6709)
Diffstat (limited to 'src/sp-title.h')
| -rw-r--r-- | src/sp-title.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/sp-title.h b/src/sp-title.h new file mode 100644 index 000000000..a5f0a2fea --- /dev/null +++ b/src/sp-title.h @@ -0,0 +1,32 @@ +#ifndef __SP_TITLE_H__ +#define __SP_TITLE_H__ + +/* + * SVG <title> implementation + * + * Authors: + * Jeff Schiller <codedread@gmail.com> + * + * Copyright (C) 2008 Jeff Schiller + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "sp-object.h" + +#define SP_TYPE_TITLE (sp_title_get_type ()) +#define SP_IS_TITLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_TITLE)) + +class SPTitle; +class SPTitleClass; + +struct SPTitle : public SPObject { +}; + +struct SPTitleClass { + SPObjectClass parent_class; +}; + +GType sp_title_get_type (void); + +#endif |
