13 lines
186 B
Matlab
13 lines
186 B
Matlab
|
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
@implementation AppDelegate
|
||
|
|
||
|
#if TARGET_OS_OSX
|
||
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
|
||
|
return YES;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
@end
|