From 48c46dfdd986ad4a7a0692d05992f7882bef6a88 Mon Sep 17 00:00:00 2001 From: Sascha Volkenandt Date: Tue, 2 Jan 2007 19:18:27 +0000 Subject: - initial checkin --- thread.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 thread.h (limited to 'thread.h') diff --git a/thread.h b/thread.h new file mode 100644 index 0000000..d0a3bca --- /dev/null +++ b/thread.h @@ -0,0 +1,22 @@ +#ifndef VDR_LIVE_THREAD_H +#define VDR_LIVE_THREAD_H + +#include + +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 -- cgit v1.2.3