]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/autorelease.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/autorelease.h
3 // Purpose: Automatic NSAutoreleasePool functionality
4 // Author: David Elliott
7 // Copyright: (c) 2003 David Elliott <dfe@cox.net>
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __WX_COCOA_AUTORELEASE_H__
12 #define __WX_COCOA_AUTORELEASE_H__
14 #import <Foundation/NSAutoreleasePool.h>
16 class wxAutoNSAutoreleasePool
19 wxAutoNSAutoreleasePool()
21 m_pool
= [[NSAutoreleasePool alloc
] init
];
23 ~wxAutoNSAutoreleasePool()
28 NSAutoreleasePool
*m_pool
;
31 #endif //__WX_COCOA_AUTORELEASE_H__