/* * thread.h: thread doing the actual work * * See the README file for copyright information and how to reach the author. */ #ifndef _EPGSYNC_THREAD__H #define _EPGSYNC_THREAD__H #include #include #include #include "svdrpservice.h" class cEpgSyncThread: public cThread { private: cPlugin *plugin; SvdrpConnection_v1_0 svdrp; protected: virtual void Action(); bool CmdLSTE(FILE *f, const char *Arg = NULL); void AddSchedule(FILE *f); public: cEpgSyncThread(); virtual ~cEpgSyncThread(); }; #endif //_EPGSYNC_THREAD__H