]>
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
8 // Copyright: (c) 2003 David Elliott <dfe@cox.net>
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_AUTORELEASE_H__
13 #define __WX_COCOA_AUTORELEASE_H__
15 #import <Foundation/NSAutoreleasePool.h>
17 class wxAutoNSAutoreleasePool
20 wxAutoNSAutoreleasePool()
22 m_pool
= [[NSAutoreleasePool alloc
] init
];
24 ~wxAutoNSAutoreleasePool()
29 NSAutoreleasePool
*m_pool
;
32 #endif //__WX_COCOA_AUTORELEASE_H__