ProFUSE-Image-Opener/Image Opener/IOAppDelegate.m

37 lines
618 B
Mathematica
Raw Normal View History

2011-03-02 03:25:25 +00:00
//
// Image_OpenerAppDelegate.m
// Image Opener
//
// Created by Kelvin Sherlock on 3/1/2011.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "IOAppDelegate.h"
2011-03-02 03:25:25 +00:00
@implementation IOAppDelegate
2011-03-02 03:25:25 +00:00
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
2016-08-18 13:02:20 +00:00
}
-(void)applicationWillFinishLaunching:(NSNotification *)notification {
2011-03-02 03:25:25 +00:00
}
2016-08-18 13:18:40 +00:00
2016-08-18 13:02:20 +00:00
-(BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender {
return NO;
}
-(BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return NO;
}
2011-03-04 03:32:37 +00:00
2011-03-02 03:25:25 +00:00
@end