summaryrefslogtreecommitdiffstats
path: root/src/object/sp-title.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
commitc853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch)
tree7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /src/object/sp-title.h
parentInitial commit. (diff)
downloadinkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz
inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/object/sp-title.h')
-rw-r--r--src/object/sp-title.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/object/sp-title.h b/src/object/sp-title.h
new file mode 100644
index 0000000..18d52f1
--- /dev/null
+++ b/src/object/sp-title.h
@@ -0,0 +1,27 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+#ifndef SEEN_SP_TITLE_H
+#define SEEN_SP_TITLE_H
+
+/*
+ * SVG <title> implementation
+ *
+ * Authors:
+ * Jeff Schiller <codedread@gmail.com>
+ *
+ * Copyright (C) 2008 Jeff Schiller
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#include "sp-object.h"
+
+class SPTitle final : public SPObject {
+public:
+ SPTitle();
+ ~SPTitle() override;
+ int tag() const override { return tag_of<decltype(*this)>; }
+
+ Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags) override;
+};
+
+#endif