aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.h
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2004-05-23 10:39:21 +0000
committerFelix Domke <tmbinc@elitedvb.net>2004-05-23 10:39:21 +0000
commitc0f5089ea04bd04fe25148e712fa62cd49dc17da (patch)
tree4459439ba4fd730d69fd0216b43f41b6ebf010c3 /lib/service/servicedvb.h
parent676c3e4b7ba3a01f5d69bed1b5b2c861e84a6211 (diff)
downloadenigma2-c0f5089ea04bd04fe25148e712fa62cd49dc17da.tar.gz
enigma2-c0f5089ea04bd04fe25148e712fa62cd49dc17da.zip
added nav core
Diffstat (limited to 'lib/service/servicedvb.h')
-rw-r--r--lib/service/servicedvb.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h
index fac9edf2..1de4586c 100644
--- a/lib/service/servicedvb.h
+++ b/lib/service/servicedvb.h
@@ -20,7 +20,7 @@ public:
RESULT list(const eServiceReference &, ePtr<iListableService> &ptr);
};
-class eDVBServicePlay: public virtual iPlayableService, public virtual iObject, public Object
+class eDVBServicePlay: public virtual iPlayableService, public virtual iObject, public Object, public virtual iServiceInformation
{
DECLARE_REF;
private:
@@ -38,8 +38,14 @@ public:
virtual ~eDVBServicePlay();
// iPlayableService
+ RESULT connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection);
RESULT start();
+ RESULT stop();
RESULT getIPausableService(ePtr<iPauseableService> &ptr);
+ RESULT getIServiceInformation(ePtr<iServiceInformation> &ptr);
+
+ // iServiceInformation
+ RESULT getName(eString &name);
};
#endif