On Aug 26, 2010, at 9:11 AM, k...@highrolls.net wrote: > I want to add Obj-C to classes in a CPP static library that is used by Mac > and Windows apps. I have set the compile type to cpp.objc so that the file > extension can remain .cpp and compile on Windows. I am #ifdef'ing functions > that use Cocoa. > > My question is memory management. Should functions allocate/release auto > release pools?
Autorelease pools are not scoped to any particular class or function, so probably not, unless you're using the library in an application that doesn't have an autorelease pool, which would be pretty rare. You would also need to create a new pool in any thread other than the main one, and drain it at thread exit. If an object gets autoreleased and there is no autorelease pool in place for it, you'll see a big warning in the console, so just look for those. If you don't see one, then you're OK. -- Dave Carrigan d...@rudedog.org Seattle, WA, USA _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com