mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
30 lines
737 B
C++
30 lines
737 B
C++
/*
|
|
* $Id: streamdev-server.h,v 1.1 2004/12/30 22:43:59 lordjaxom Exp $
|
|
*/
|
|
|
|
#ifndef VDR_STREAMDEVSERVER_H
|
|
#define VDR_STREAMDEVSERVER_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <vdr/plugin.h>
|
|
|
|
class cPluginStreamdevServer : public cPlugin {
|
|
private:
|
|
static const char *DESCRIPTION;
|
|
|
|
public:
|
|
cPluginStreamdevServer(void);
|
|
virtual ~cPluginStreamdevServer();
|
|
virtual const char *Version(void) { return VERSION; }
|
|
virtual const char *Description(void);
|
|
virtual bool Start(void);
|
|
virtual bool Active(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_STREAMDEVSERVER_H
|