this repo has no description
1/*
2 Project: crash
3
4 Author: lubos
5
6 Created: 2012-11-06 15:43:05 +0100 by lubos
7
8 Application Controller
9*/
10
11#ifndef _PCAPPPROJ_APPCONTROLLER_H
12#define _PCAPPPROJ_APPCONTROLLER_H
13
14#import <AppKit/AppKit.h>
15// Uncomment if your application is Renaissance-based
16//#import <Renaissance/Renaissance.h>
17
18@interface AppController : NSObject
19{
20}
21
22+ (void) initialize;
23
24- (id) init;
25- (void) dealloc;
26
27- (void) awakeFromNib;
28
29- (void) applicationDidFinishLaunching: (NSNotification *)aNotif;
30- (BOOL) applicationShouldTerminate: (id)sender;
31- (void) applicationWillTerminate: (NSNotification *)aNotif;
32- (BOOL) application: (NSApplication *)application
33 openFile: (NSString *)fileName;
34
35- (void) showPrefPanel: (id)sender;
36
37@end
38
39#endif