/* Project: crash Author: lubos Created: 2012-11-06 15:43:05 +0100 by lubos Application Controller */ #ifndef _PCAPPPROJ_APPCONTROLLER_H #define _PCAPPPROJ_APPCONTROLLER_H #import // Uncomment if your application is Renaissance-based //#import @interface AppController : NSObject { } + (void) initialize; - (id) init; - (void) dealloc; - (void) awakeFromNib; - (void) applicationDidFinishLaunching: (NSNotification *)aNotif; - (BOOL) applicationShouldTerminate: (id)sender; - (void) applicationWillTerminate: (NSNotification *)aNotif; - (BOOL) application: (NSApplication *)application openFile: (NSString *)fileName; - (void) showPrefPanel: (id)sender; @end #endif