summaryrefslogtreecommitdiff
path: root/monitor.h
blob: 768708f5f226048c6fd4860f2561b1ec9fef9449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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