OOOoyalaPlayer+Cast.h
1 //
2 // OOOoyalaPlayer+Cast.h
3 // OoyalaSDK
4 //
5 // Created on 10/31/18.
6 // Copyright © 2018 Brightcove, Inc. All rights reserved.
7 //
8 
9 #import "OOOoyalaPlayer.h"
10 
11 #ifndef OOOoyalaPlayer_Cast_h
12 #define OOOoyalaPlayer_Cast_h
13 
14 @class OOCastManager;
15 
17 
18 - (void)initCastManager:(OOCastManager *)castManager;
19 
20 - (void)switchToCastMode;
21 
22 - (void)exitCastModeWithEmbedCode:(NSString *)embedCode
23  playheadTime:(Float64)playheadTime
24  isPlaying:(BOOL)isPlaying;
25 
26 - (BOOL)isInCastMode;
27 
28 @end
29 
30 #endif /* OOOoyalaPlayer_Cast_h */
Definition: OOOoyalaPlayer+Cast.h:16