Staging
v0.5.1
https://github.com/python/cpython
Revision 7ed6f7ead19c81d697e0364ac849bd042b7f1502 authored by Raymond Hettinger on 10 March 2013, 16:49:08 UTC, committed by Raymond Hettinger on 10 March 2013, 16:49:08 UTC
1 parent 8c5c3e3
Raw File
Tip revision: 7ed6f7ead19c81d697e0364ac849bd042b7f1502 authored by Raymond Hettinger on 10 March 2013, 16:49:08 UTC
Classmethod example needs to inherit from object
Tip revision: 7ed6f7e
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