blob: c65175a7aec651e4192fc0bef625bf0bdea19993 [file] [log] [blame]
Jack Jansen3bbb6172002-07-29 21:36:35 +00001/* MyAppDelegate */
2
3#import <Cocoa/Cocoa.h>
4
5@interface MyAppDelegate : NSObject
6{
7 BOOL initial_action_done;
8 BOOL should_terminate;
9}
10- (id)init;
11- (IBAction)showPreferences:(id)sender;
12- (BOOL)shouldShowUI;
13- (BOOL)shouldTerminate;
14@end