summaryrefslogtreecommitdiffstats
path: root/source/ptr_cChunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/ptr_cChunk.h')
-rw-r--r--source/ptr_cChunk.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/ptr_cChunk.h b/source/ptr_cChunk.h
deleted file mode 100644
index c3556839c..000000000
--- a/source/ptr_cChunk.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#pragma once
-
-#include "cChunk.h"
-
-class ptr_cChunk
-{
-public:
- ptr_cChunk( cChunk* a_Ptr )
- : m_Ptr( a_Ptr )
- {
- if( m_Ptr ) m_Ptr->AddReference();
- }
-
- ptr_cChunk( const ptr_cChunk& a_Clone )
- : m_Ptr( a_Clone.m_Ptr )
- {
- if( m_Ptr ) m_Ptr->AddReference();
- }
-
- ~ptr_cChunk()
- {
- if( m_Ptr ) m_Ptr->RemoveReference();
- }
-
- cChunk* operator-> ()
- {
- return m_Ptr;
- }
-
- cChunk& operator* () { return *m_Ptr; }
- bool operator!() { return !m_Ptr; }
- bool operator==( const ptr_cChunk& a_Other ) { return m_Ptr == a_Other.m_Ptr; }
- operator bool() { return m_Ptr != 0; }
- operator cChunk*() { return m_Ptr; }
-private:
- cChunk* m_Ptr;
-}; \ No newline at end of file