summaryrefslogtreecommitdiffstats
path: root/src/sp-title.h
diff options
context:
space:
mode:
authorJeff Schiller <codedread@gmail.com>2008-08-23 06:13:23 +0000
committerjeff_schiller <jeff_schiller@users.sourceforge.net>2008-08-23 06:13:23 +0000
commit7dba27edc91ec41f0ab7fa30aab75c31e97a1947 (patch)
treeff29af2d0b0b053f4464a94eff8978bbdcf13dfe /src/sp-title.h
parentHopefully fix for the recently experienced crashes when building with -O2. I ... (diff)
downloadinkscape-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.h32
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