diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2012-02-19 13:42:21 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2012-02-19 13:42:21 +0000 |
| commit | b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b (patch) | |
| tree | 197e171f4d7ad0a3a9b92295d9000ae517c27b9f /src | |
| parent | remove unused code (diff) | |
| download | inkscape-b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b.tar.gz inkscape-b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b.zip | |
remove very old unused code file
(bzr r10998)
Diffstat (limited to 'src')
| -rw-r--r-- | src/helper/stlport.h | 25 |
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 |
