calcolatrice/Calcolatrice/AppDelegate.h
2013-07-22 17:02:52 +02:00

13 lines
410 B
Objective-C

#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *finestra1;
@property (assign) IBOutlet NSWindow *finestra2;
- (IBAction) scambiaFinestre: (id) sender;
- (BOOL) applicationShouldTerminateAfterLastWindowClosed: (NSApplication *) theApplication;
- (void) applicationDidFinishLaunching: (NSNotification *) aNotification;
@end