Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 586547387b468ffb391cb76842f65e68164e5135 authored by Benjamin Peterson on 16 August 2009, 21:59:05 UTC
bump to 3.1.1
Tip revision: 5865473
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