diff options
Diffstat (limited to 'status.h')
| -rw-r--r-- | status.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/status.h b/status.h new file mode 100644 index 0000000..7f1dadb --- /dev/null +++ b/status.h @@ -0,0 +1,27 @@ +/* + * status.h: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * $Id$ + */ +#ifndef __status_h_ +#define __status_h_ + +#include <vdr/status.h> +#include "recv.h" + +// --- cStatusMarkAd +class cStatusMarkAd : public cStatus +{ +private: + cMarkAdReceiver *recv[MAXDEVICES*MAXRECEIVERS]; + int FindReceiver(const char *FileName); + int GetFreeReceiver(); +protected: + virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On); +public: + cStatusMarkAd(); +}; + +#endif |
