From 718121df91764c810dbc0556a3d216c5d849b4ff Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Mon, 5 Jun 2017 09:36:13 +0200 Subject: Remove SharedPtr, it's not used and will be never used, we use C++11 --- src/util/pointer.h | 74 ------------------------------------------------------ 1 file changed, 74 deletions(-) (limited to 'src/util') diff --git a/src/util/pointer.h b/src/util/pointer.h index 7f6654787..6614ca2c2 100644 --- a/src/util/pointer.h +++ b/src/util/pointer.h @@ -24,80 +24,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "../debug.h" // For assert() #include -template -class SharedPtr -{ -public: - SharedPtr(T *t=NULL) - { - refcount = new int; - *refcount = 1; - ptr = t; - } - SharedPtr(SharedPtr &t) - { - //*this = t; - drop(); - refcount = t.refcount; - (*refcount)++; - ptr = t.ptr; - } - ~SharedPtr() - { - drop(); - } - SharedPtr & operator=(T *t) - { - drop(); - refcount = new int; - *refcount = 1; - ptr = t; - return *this; - } - SharedPtr & operator=(SharedPtr &t) - { - drop(); - refcount = t.refcount; - (*refcount)++; - ptr = t.ptr; - return *this; - } - T* operator->() - { - return ptr; - } - T & operator*() - { - return *ptr; - } - bool operator!=(T *t) - { - return ptr != t; - } - bool operator==(T *t) - { - return ptr == t; - } - T & operator[](unsigned int i) - { - return ptr[i]; - } -private: - void drop() - { - assert((*refcount) > 0); - (*refcount)--; - if(*refcount == 0) - { - delete refcount; - if(ptr != NULL) - delete ptr; - } - } - T *ptr; - int *refcount; -}; - template class Buffer { -- cgit v1.2.3