File: status.cpp

package info (click to toggle)
vdr-plugin-live 2.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,608 kB
  • sloc: cpp: 5,859; makefile: 254; sh: 129; awk: 39
file content (28 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (3)
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

#include "status.h"

#include "timers.h"

namespace vdrlive {

StatusMonitor::StatusMonitor()
{
}

void StatusMonitor::TimerChange(const cTimer *Timer, eTimerChange Change)
{
	LiveTimerManager().SetReloadTimers();
}

void StatusMonitor::Recording( cDevice const*, char const*, char const*, bool )
{
	LiveTimerManager().SetReloadTimers();
}

StatusMonitor& LiveStatusMonitor()
{
	static StatusMonitor instance;
	return instance;
}

} // namespace vdrlive