summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2012-02-19 13:42:21 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2012-02-19 13:42:21 +0000
commitb78e5bc2f6fa860deae8653a71d4b3f2fc26d14b (patch)
tree197e171f4d7ad0a3a9b92295d9000ae517c27b9f
parentremove unused code (diff)
downloadinkscape-b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b.tar.gz
inkscape-b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b.zip
remove very old unused code file
(bzr r10998)
-rw-r--r--src/helper/stlport.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/helper/stlport.h b/src/helper/stlport.h
deleted file mode 100644
index c7b00eb28..000000000
--- a/src/helper/stlport.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __STL_PORT_H__
-#define __STK_PORT_H__
-
-
-#include <list>
-#include <glib.h>
-
-template <typename T>
-class StlConv {
-public :
- static void slist(std::list<T> &stlList, const GSList *slist) {
- for (const GSList *l = slist; l != NULL; l = l->next) {
- T item = reinterpret_cast<T>(l->data);
- stlList.push_back(item);
- }
- }
- static void list(std::list<T> &stlList, const GList *list) {
- for (const GList *l = list; l != NULL; l = l->next) {
- T item = reinterpret_cast<T>(l->data);
- stlList.push_back(item);
- }
- }
-};
-
-#endif