blob: 097b54177c881d2d9d6eba7522d2b627f2037c35 [file] [log] [blame]
/* MyAppDelegate */
#import <Cocoa/Cocoa.h>
@interface MyAppDelegate : NSObject
{
BOOL initial_action_done;
BOOL should_terminate;
}
- (id)init;
- (IBAction)showPreferences:(id)sender;
- (BOOL)shouldShowUI;
- (BOOL)shouldTerminate;
- (void)testFileTypeBinding;
@end