diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-02 19:18:27 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-02 19:18:27 +0000 |
commit | 48c46dfdd986ad4a7a0692d05992f7882bef6a88 (patch) | |
tree | 88a3a88a7ab43632850569cba3ab48a1924d9e52 /thread.h | |
download | vdr-plugin-live-48c46dfdd986ad4a7a0692d05992f7882bef6a88.tar.gz vdr-plugin-live-48c46dfdd986ad4a7a0692d05992f7882bef6a88.tar.bz2 |
- initial checkin
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 22 |
1 files changed, 22 insertions, 0 deletions
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 <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 |