blob: 7379b75a2c0abde0d2727c1bc847c98cebca8223 (
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
|
#ifndef VDR_LIVE_STATUS_H
#define VDR_LIVE_STATUS_H
#include <vdr/status.h>
namespace vdrlive {
class StatusMonitor: public cStatus
{
friend StatusMonitor& LiveStatusMonitor();
private:
StatusMonitor();
StatusMonitor( StatusMonitor const& );
virtual void TimerChange(const cTimer *Timer, eTimerChange Change);
virtual void Recording( cDevice const* Device, char const* Name, char const* FileName, bool On );
};
StatusMonitor& LiveStatusMonitor();
} // namespace vdrlive
#endif // VDR_LIVE_STATUS_H
|