summaryrefslogtreecommitdiff
path: root/p2pvr/daemon
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2013-12-10 22:34:52 +0000
committerrandomdan <randomdan@localhost>2013-12-10 22:34:52 +0000
commit5e3e3e92259430d7db73780e92ff9a944de1a082 (patch)
treedb03597d5fe75f97acb34a0d162e21939f7b4dad /p2pvr/daemon
parentExtend container helpers to support different pointer types (diff)
downloadp2pvr-5e3e3e92259430d7db73780e92ff9a944de1a082.tar.bz2
p2pvr-5e3e3e92259430d7db73780e92ff9a944de1a082.tar.xz
p2pvr-5e3e3e92259430d7db73780e92ff9a944de1a082.zip
Adds basic scheduling support, although currently produces only debug output and has incomplete DB dependencies
Diffstat (limited to 'p2pvr/daemon')
-rw-r--r--p2pvr/daemon/daemon.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/p2pvr/daemon/daemon.cpp b/p2pvr/daemon/daemon.cpp
index 1bd328c..58ca66e 100644
--- a/p2pvr/daemon/daemon.cpp
+++ b/p2pvr/daemon/daemon.cpp
@@ -5,6 +5,7 @@
#include "globalDevices.h"
#include "maintenance.h"
#include "si.h"
+#include "schedules.h"
#include <logger.h>
#include <linux/dvb/frontend.h>
@@ -30,6 +31,7 @@ class P2PvrDaemon : public Daemon {
adapter->add(new GlobalDevices(), ic->stringToIdentity("GlobalDevices"));
adapter->add(new Maintenance(), ic->stringToIdentity("Maintenance"));
adapter->add(new SI(), ic->stringToIdentity("SI"));
+ adapter->add(new Schedules(), ic->stringToIdentity("Schedules"));
adapter->activate();
auto maint = P2PVR::MaintenancePrx::checkedCast(adapter->createProxy(ic->stringToIdentity("Maintenance")));