296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
[super dealloc];
}
@end
@implementation OFObject (OFApplicationDelegate)
- (void)applicationDidFinishLaunching
{
@throw [OFNotImplementedException exceptionWithClass: isa
selector: _cmd];
}
- (void)applicationWillTerminate
{
}
|
|
|
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
[super dealloc];
}
@end
@implementation OFObject (OFApplicationDelegate)
- (void)applicationDidFinishLaunching
{
@throw [OFNotImplementedException exceptionWithClass: [self class]
selector: _cmd];
}
- (void)applicationWillTerminate
{
}
|