blob: 934fefffe2ac600757c9045f7e79815e1665dd2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef HLSPLAYERCONTROL_H
#define HLSPLAYERCONTROL_H
#include <vdr/player.h>
#include <vdr/tools.h>
#include "hlsPlayer.h"
class cHlsPlayerControl : public cControl
{
private:
cHlsPlayer* m_pPlayer;
std::string m_title;
public:
cHlsPlayerControl(cHlsPlayer* Player, std::string title);
virtual ~cHlsPlayerControl();
virtual void Show(void);
virtual void Hide(void);
virtual cString GetHeader(void);
//virtual eOSState ProcessKey(eKeys Key);
};
#endif // HLSPLAYERCONTROL_H
|