blob: f572604f6853fdb7d839a80ef37083f091b4149b (
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
|
#include "hlsPlayerControl.h"
cHlsPlayerControl::cHlsPlayerControl(cHlsPlayer* Player, std::string title) :cControl(Player)
{
m_pPlayer = Player;
m_title = title;
}
cHlsPlayerControl::~cHlsPlayerControl()
{
}
cString cHlsPlayerControl::GetHeader(void)
{
return m_title.c_str();
}
void cHlsPlayerControl::Hide(void)
{
}
void cHlsPlayerControl::Show(void)
{
}
|