summaryrefslogtreecommitdiffstats
path: root/src/sp-string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-string.h')
-rw-r--r--src/sp-string.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/sp-string.h b/src/sp-string.h
deleted file mode 100644
index b80b4b8bf..000000000
--- a/src/sp-string.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef SEEN_SP_STRING_H
-#define SEEN_SP_STRING_H
-
-/*
- * string elements
- * extracted from sp-text
- */
-
-#include <glibmm/ustring.h>
-
-#include "sp-object.h"
-
-#define SP_STRING(obj) (dynamic_cast<SPString*>((SPObject*)obj))
-#define SP_IS_STRING(obj) (dynamic_cast<const SPString*>((SPObject*)obj) != NULL)
-
-class SPString : public SPObject {
-public:
- SPString();
- virtual ~SPString();
-
- Glib::ustring string;
-
- virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
- virtual void release();
-
- virtual void read_content();
-
- virtual void update(SPCtx* ctx, unsigned int flags);
-};
-
-#endif