]> git.saurik.com Git - wxWidgets.git/commitdiff
added CFRef holder templated class
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 6 Nov 2005 07:19:18 +0000 (07:19 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 6 Nov 2005 07:19:18 +0000 (07:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36094 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/private.h

index a78ba801500af0ce6b9b5b474acbd410cda7ee33..60872bdf36efcb5839eccc58873b6d22b9510c9a 100644 (file)
@@ -375,6 +375,55 @@ private :
 
 typedef wxMacUPP<NMProcPtr,NMUPP,NewNMUPP,DisposeNMUPP> wxMacNMUPP ;
 
 
 typedef wxMacUPP<NMProcPtr,NMUPP,NewNMUPP,DisposeNMUPP> wxMacNMUPP ;
 
+template <typename refType> class wxMacCFRefHolder
+{
+public :
+    wxMacCFRefHolder()
+        : m_ref(NULL) , m_release(false) 
+    {
+    }
+    
+    wxMacCFRefHolder( refType ref , bool release = true ) 
+        : m_ref(ref) , m_release(release)
+    {
+    }
+    
+    ~wxMacCFRefHolder()
+    {
+        CFRelease( m_ref ) ;
+    }
+    
+    void Release()
+    {
+        if ( m_release && m_ref != NULL )
+            CFRelease( m_ref ) ;
+        m_ref = NULL ;
+    }
+    
+    refType Detach()
+    {
+        refType val = m_ref ;
+        m_release = false ;
+        m_ref = NULL ;
+        return val ;
+    }
+    
+    void Set( refType ref , bool release = true  )
+    {
+        Release() ;
+        m_release = release ;
+        m_ref = ref ;
+    }
+    
+    operator refType () const { return m_ref; }
+    
+private :
+    refType m_ref ;
+    bool m_release ;  
+    
+    DECLARE_NO_COPY_CLASS( wxMacCFRefHolder )
+} ;
+
 #if wxUSE_GUI
 /*
 GWorldPtr         wxMacCreateGWorld( int width , int height , int depth ) ;
 #if wxUSE_GUI
 /*
 GWorldPtr         wxMacCreateGWorld( int width , int height , int depth ) ;