/* * dvbsddevice.c: A plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * * $Id: dvbsddevice.c 1.1 2009/12/31 15:36:00 kls Exp $ */ #include #include "dvbsdffdevice.h" static const char *VERSION = "0.0.1"; static const char *DESCRIPTION = "SD Full Featured DVB device"; class cPluginDvbsddevice : public cPlugin { private: cDvbSdFfDeviceProbe *probe; public: cPluginDvbsddevice(void); virtual ~cPluginDvbsddevice(); virtual const char *Version(void) { return VERSION; } virtual const char *Description(void) { return DESCRIPTION; } }; cPluginDvbsddevice::cPluginDvbsddevice(void) { probe = new cDvbSdFfDeviceProbe; } cPluginDvbsddevice::~cPluginDvbsddevice() { delete probe; } VDRPLUGINCREATOR(cPluginDvbsddevice); // Don't touch this!