summaryrefslogtreecommitdiff
path: root/live.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'live.cpp')
-rw-r--r--live.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/live.cpp b/live.cpp
index 0000186..88f4718 100644
--- a/live.cpp
+++ b/live.cpp
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: live.cpp,v 1.5 2007/01/03 21:43:21 lordjaxom Exp $
+ * $Id: live.cpp,v 1.6 2007/01/04 15:02:00 lordjaxom Exp $
*/
#include <vdr/plugin.h>
@@ -11,6 +11,7 @@
#include "live.h"
#include "setup.h"
#include "thread.h"
+#include "timers.h"
namespace vdrlive {
@@ -71,6 +72,12 @@ Setup& Plugin::GetLiveSetup()
return instance;
}
+TimerManager& Plugin::GetLiveTimerManager()
+{
+ static TimerManager instance;
+ return instance;
+}
+
} // namespace vdrlive
VDRPLUGINCREATOR(vdrlive::Plugin); // Don't touch this!