diff options
Diffstat (limited to 'status.cpp')
-rw-r--r-- | status.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/status.cpp b/status.cpp new file mode 100644 index 0000000..acc60fe --- /dev/null +++ b/status.cpp @@ -0,0 +1,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 |