Advertisement
Guest User

Untitled

a guest
Feb 16th, 2011
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. //
  2. // ApplicationAppDelegate.h
  3. // Sandbox
  4. //
  5. // Created by Phillip on 2/14/11.
  6. // Copyright 2011 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10.  
  11.  
  12. @interface ApplicationAppDelegate : NSObject <NSApplicationDelegate>
  13. @property (assign) IBOutlet NSWindow* window;
  14. @property (retain) IBOutlet NSTableView* guestsTableView;
  15.  
  16. //data
  17. @property (retain) NSMutableArray* guests;
  18.  
  19.  
  20. //action
  21. - (IBAction) signIn:(id)sender;
  22. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement