File: status.cpp

package info (click to toggle)
vdr-plugin-live 0.2.0%2Bgit20120428-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,604 kB
  • sloc: cpp: 23,420; php: 377; makefile: 238; sh: 128; perl: 99; awk: 39
file content (21 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "status.h"
#include "timers.h"

namespace vdrlive {

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

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

} // namespace vdrlive