calcolatrice/Calcolatrice/AppDelegate.h

13 lines
410 B
C
Raw Normal View History

2013-07-22 17:02:52 +02:00
#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