/Mobile/iPhone/StoffiRemote/StoffiRemote/RemoteViewController.h

http://yet-another-music-application.googlecode.com/ · C Header · 22 lines · 10 code · 5 blank · 7 comment · 0 complexity · 24be7fc31889c9254e4c5caacf853e33 MD5 · raw file

  1. //
  2. // RemoteViewController.h
  3. // StoffiRemote
  4. //
  5. // Created by Fredrik Gadnell on 9/26/11.
  6. // Copyright 2011 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RemoteViewController : UIViewController {
  10. IBOutlet UIButton *playButton;
  11. IBOutlet UIButton *pauseButton;
  12. }
  13. - (void)presentLoginScreenAnimated:(BOOL)animated;
  14. - (IBAction)logoutPressed;
  15. - (IBAction)playPressed;
  16. - (IBAction)pausePressed;
  17. @end