diff options
Diffstat (limited to 'p2pvr/daemon/si.h')
-rw-r--r-- | p2pvr/daemon/si.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/p2pvr/daemon/si.h b/p2pvr/daemon/si.h index dd48d77..c57a018 100644 --- a/p2pvr/daemon/si.h +++ b/p2pvr/daemon/si.h @@ -6,7 +6,8 @@ class SI : public P2PVR::SI, public DatabaseClient { public: - P2PVR::Deliveries GetAllDeliveries(short type, const Ice::Current &); + DVBSI::Networks GetNetworks(const Ice::Current &); + P2PVR::Deliveries GetAllDeliveries(const Ice::Current &); DVBSI::DeliveryPtr GetDeliveryForService(int id, const Ice::Current &); DVBSI::DeliveryPtr GetDeliveryForTransport(int id, const Ice::Current &); DVBSI::DeliveryPtr GetDeliveryForSi(const Ice::Current &); @@ -14,12 +15,13 @@ class SI : public P2PVR::SI, public DatabaseClient { DVBSI::ServiceList GetServices(const Ice::Current &); DVBSI::ServicePtr GetService(int id, const Ice::Current &); - DVBSI::EventPtr GetEvent(int serviceId, int eventId, const Ice::Current &); - DVBSI::Events EventsOnNow(const Ice::Current &); - DVBSI::Events EventsInSchedules(const Ice::Current &); - DVBSI::Events EventsInSchedule(int scheduleId, const Ice::Current &); - DVBSI::Events EventsInRange(const Common::DateTime &, const Common::DateTime &, const Ice::Current &); - DVBSI::Events EventSearch(const IceUtil::Optional<std::string> & keywords, const IceUtil::Optional<Ice::Int> & serviceId, const IceUtil::Optional<Common::DateTime> & from, const IceUtil::Optional<Common::DateTime> & to, const Ice::Current &); + P2PVR::Events GetEvents(const P2PVR::IntSequence & eventUids, const Ice::Current &); + P2PVR::EventPtr GetEvent(int serviceId, int eventId, const Ice::Current &); + P2PVR::Events EventsOnNow(const Ice::Current &); + P2PVR::Events EventsInSchedules(const Ice::Current &); + P2PVR::Events EventsInSchedule(int scheduleId, const Ice::Current &); + P2PVR::Events EventsInRange(const Common::DateTime &, const Common::DateTime &, const Ice::Current &); + P2PVR::Events EventSearch(const IceUtil::Optional<std::string> & keywords, const IceUtil::Optional<Ice::Int> & serviceId, const IceUtil::Optional<Common::DateTime> & from, const IceUtil::Optional<Common::DateTime> & to, const Ice::Current &); }; #endif |