Staging
v0.8.1
Revision 38c508a00c32a6ce45a10b705adf8c818fa49dcd authored by Ned Deily on 22 November 2016, 04:30:55 UTC, committed by Ned Deily on 22 November 2016, 04:30:55 UTC
1 parent 19df707
Raw File
MyAppDelegate.h
/* 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
back to top