From b78e5bc2f6fa860deae8653a71d4b3f2fc26d14b Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Sun, 19 Feb 2012 14:42:21 +0100 Subject: remove very old unused code file (bzr r10998) --- src/helper/stlport.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/helper/stlport.h (limited to 'src') 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 -#include - -template -class StlConv { -public : - static void slist(std::list &stlList, const GSList *slist) { - for (const GSList *l = slist; l != NULL; l = l->next) { - T item = reinterpret_cast(l->data); - stlList.push_back(item); - } - } - static void list(std::list &stlList, const GList *list) { - for (const GList *l = list; l != NULL; l = l->next) { - T item = reinterpret_cast(l->data); - stlList.push_back(item); - } - } -}; - -#endif -- cgit v1.2.3