13 lines
410 B
Objective-C
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
|