blob: d0a3bcaca7077a1eb8b0f1fd8823964538f31233 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef VDR_LIVE_THREAD_H
#define VDR_LIVE_THREAD_H
#include <vdr/thread.h>
namespace vdrlive {
class ServerThread : public cThread {
public:
ServerThread();
virtual ~ServerThread();
protected:
virtual void Action();
private:
char* m_configPath;
};
} // namespace vdrlive
#endif // VDR_LIVE_THREAD_H
|