RootViewController.h 481 B

123456789101112131415161718192021222324
  1. //
  2. // RootViewController.h
  3. // DBRoulette
  4. //
  5. // Created by Brian Smith on 6/29/10.
  6. // Copyright Dropbox, Inc. 2010. All rights reserved.
  7. //
  8. @class DBRestClient;
  9. @interface RootViewController : UIViewController {
  10. UIButton* linkButton;
  11. UIViewController* photoViewController;
  12. DBRestClient* restClient;
  13. }
  14. - (IBAction)didPressLink;
  15. @property (nonatomic, retain) IBOutlet UIButton* linkButton;
  16. @property (nonatomic, retain) UIViewController* photoViewController;
  17. @end