/Mobile/iPhone/StoffiRemote/StoffiRemote/RemoteViewController.h
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 9#import <UIKit/UIKit.h> 10 11 12@interface RemoteViewController : UIViewController { 13 IBOutlet UIButton *playButton; 14 IBOutlet UIButton *pauseButton; 15} 16 17- (void)presentLoginScreenAnimated:(BOOL)animated; 18- (IBAction)logoutPressed; 19- (IBAction)playPressed; 20- (IBAction)pausePressed; 21 22@end