ArDrone SDK 1.8 added
[mardrone] / mardrone / ARDrone_SDK_Version_1_8_20110726 / ControlEngine / iPhone / Classes / Hide / TVOut.h
1 //
2 //  TVOut.h
3 //  ARDroneEngine
4 //
5 //  Created by Frédéric D'HAEYER on 22/12/09.
6 //  Copyright 2009 Parrot SA. All rights reserved.
7 //
8 #include "ConstantsAndMacros.h"
9
10 #ifdef ENABLE_AUTO_TVOUT
11 #import <MediaPlayer/MediaPlayer.h>
12
13 extern NSString * const UIApplicationDidSetupScreenMirroringNotification;
14 extern NSString * const UIApplicationDidDisableScreenMirroringNotification;
15
16 @interface TVOut : NSObject
17
18 - (BOOL) isScreenMirroringActive;
19 - (UIScreen *) currentMirroringScreen;
20 - (void) setupScreenMirroring;
21 - (void) setupScreenMirroringWithFramesPerSecond:(double)fps;
22 - (void) disableScreenMirroring;
23
24 @end
25
26 #endif // ENABLE_AUTO_TVOUT