/ Sample / GSSSampleOSX / AppDelegate.h
AppDelegate.h
 1  //
 2  //  AppDelegate.h
 3  //  GSSSampleOSX
 4  //
 5  //  Created by Love Hörnquist Åstrand on 2011-11-13.
 6  //
 7  
 8  #import <Cocoa/Cocoa.h>
 9  
10  @interface AppDelegate : NSObject <NSApplicationDelegate>
11  
12  @property (assign) IBOutlet NSWindow *window;
13  @property (assign) IBOutlet NSTableView *tableview;
14  @property (retain) IBOutlet NSMutableArray *credentials;
15  @property (assign) IBOutlet NSArrayController *arrayController;
16  
17  @end