diff options
Diffstat (limited to 'monitor.h')
-rw-r--r-- | monitor.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/monitor.h b/monitor.h new file mode 100644 index 0000000..768708f --- /dev/null +++ b/monitor.h @@ -0,0 +1,22 @@ +/* + * monitor.h: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * Provides a cStatus derived monitor to be informed about VDR activities like + * channel switch, replay start/stop + */ + +#ifndef __MONITOR_H +#define __MONITOR_H + +#include <vdr/status.h> + +class cZapHistoryMonitor : public cStatus { + public: + void ChannelSwitch( const cDevice *Device, int ChannelNumber, bool LiveView); + + void Replaying( const cControl *Control, const char *Name, const char *FileName, bool On); +}; + +#endif |