VOCommonPlayer.h
1 /************************************************************************
2 VisualOn Proprietary
3 Copyright (c) 2012-2016, VisualOn, Inc. All Rights Reserved
4 
5 All data and information contained in or disclosed by this document are
6 confidential and proprietary information of VisualOn, Inc, and all rights
7 therein are expressly reserved. By accepting this material, the recipient
8 agrees that this material and the information contained therein are held
9 in confidence and in trust. The material may only be used and/or disclosed
10 as authorized in a license agreement controlling such use and disclosure.
11 ************************************************************************/
12 
13 #import <Foundation/Foundation.h>
14 
15 #import "VOCommonPlayerAnalytics.h"
16 #import "VOCommonPlayerAssetSelection.h"
17 #import "VOCommonPlayerConfiguration.h"
18 #import "VOCommonPlayerControl.h"
19 #import "VOCommonPlayerDeviceInfo.h"
20 #import "VOCommonPlayerHTTPConfiguration.h"
21 #import "VOCommonPlayerRTSPConfiguration.h"
22 #import "VOCommonPlayerStatus.h"
23 #import "VOCommonPlayerSubtitle.h"
24 
25 @protocol VOCommonPlayer <VOCommonPlayerAnalytics,
26  VOCommonPlayerAssetSelection,
27  VOCommonPlayerConfiguration,
28  VOCommonPlayerControl,
29  VOCommonPlayerDeviceInfo,
30  VOCommonPlayerHTTPConfiguration,
31  VOCommonPlayerRTSPConfiguration,
32  VOCommonPlayerStatus,
33  VOCommonPlayerSubtitle>
34 
35 @end