blob: cfe11c7555ac7434df93da04a91789f796c8b863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* 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 "filter.h"
#include "global.h"
// --- cStatusInfosatepg
class cStatusInfosatepg : public cStatus {
private:
cFilterInfosatepg *myFilter;
cDevice *myFilterDevice;
cGlobalInfosatepg *global;
protected:
#if APIVERSNUM >= 10726
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView);
#else
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
#endif
public:
cStatusInfosatepg(cGlobalInfosatepg *Global);
virtual ~cStatusInfosatepg(void);
};
#endif
|