diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-20 00:55:22 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-20 00:55:22 +0000 |
commit | 9facfd70b5a8ca4dca16fc93f6fcfe1c2bf6ce0f (patch) | |
tree | e12503f0d5699fc367140b996ea552d4672eb885 /include/base.h | |
parent | 3bd628e8a1b211e610c21571e81489d07f4b217b (diff) |
Use custom allocater to decide if refcountbase was allocated on the heap and should be deleted when refcount reaches zero
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11928 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/base.h b/include/base.h index 0de37e781..daff74e56 100644 --- a/include/base.h +++ b/include/base.h @@ -82,6 +82,8 @@ class CoreExport refcountbase virtual ~refcountbase(); inline unsigned int GetReferenceCount() const { return refcount; } friend class reference_base; + void* operator new(size_t); + void operator delete(void*); private: // uncopyable refcountbase(const refcountbase&); @@ -93,6 +95,7 @@ class CoreExport reference_base protected: template<typename T> static inline unsigned int inc(T* v) { return ++(v->refcount); } template<typename T> static inline unsigned int dec(T* v) { return --(v->refcount); } + }; template <typename T> @@ -189,6 +192,8 @@ class CoreExport ModuleException : public CoreException ModuleException(const std::string &message, Module* me = NULL); }; +/** Module reference, similar to reference<Module> + */ class CoreExport ModuleRef : public reference_base { Module* const value; |