blob: ece85e2c4becf1632069366809c7cec81472ff10 (
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
|
/**
* based on status.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_STATUS_H
#define VDR_BLOCK_STATUS_H
#include <vdr/status.h>
class cStatusBlock : public cStatus {
private:
protected:
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
virtual void Replaying(const cControl *Control,
const char *Name,
const char *FileName, bool On);
virtual void OsdProgramme(time_t PresentTime, const char *PresentTitle, const char *PresentSubtitle, time_t FollowingTime, const char *FollowingTitle, const char *FollowingSubtitle);
public:
cStatusBlock(void);
};
#endif // VDR_BLOCK_STATUS_H
|