diff options
Diffstat (limited to 'client/streamdev-client.h')
-rw-r--r-- | client/streamdev-client.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/streamdev-client.h b/client/streamdev-client.h new file mode 100644 index 0000000..07befe3 --- /dev/null +++ b/client/streamdev-client.h @@ -0,0 +1,28 @@ +/* + * $Id: streamdev-client.h,v 1.1.2.1 2010/06/14 10:40:11 schmirl Exp $ + */ + +#ifndef VDR_STREAMDEVCLIENT_H +#define VDR_STREAMDEVCLIENT_H + +#include "common.h" + +#include <vdr/plugin.h> + +class cPluginStreamdevClient : public cPlugin { +private: + static const char *DESCRIPTION; + +public: + cPluginStreamdevClient(void); + virtual ~cPluginStreamdevClient(); + virtual const char *Version(void) { return VERSION; } + virtual const char *Description(void); + virtual bool Start(void); + virtual const char *MainMenuEntry(void); + virtual cOsdObject *MainMenuAction(void); + virtual cMenuSetupPage *SetupMenu(void); + virtual bool SetupParse(const char *Name, const char *Value); +}; + +#endif // VDR_STREAMDEVCLIENT_H |