openATV enigma2
openATV is an open source SetTopBox Graphical user interface.
isection.h
Go to the documentation of this file.
1 #ifndef __dvb_isection_h
2 #define __dvb_isection_h
3 
4 #include <lib/dvb/idvb.h>
5 
6 class iDVBSectionReader: public iObject
7 {
8 public:
9  virtual RESULT start(const eDVBSectionFilterMask &mask)=0;
10  virtual RESULT stop()=0;
11  virtual RESULT connectRead(const sigc::slot1<void,const uint8_t*> &read, ePtr<eConnection> &conn)=0;
12  virtual ~iDVBSectionReader() { };
13 };
14 
15 #endif
Definition: idemux.h:7
virtual RESULT connectRead(const sigc::slot1< void, const uint8_t * > &read, ePtr< eConnection > &conn)=0
virtual RESULT start(const eDVBSectionFilterMask &mask)=0
virtual RESULT stop()=0
virtual ~iDVBSectionReader()
Definition: isection.h:12
Definition: object.h:15
int RESULT
Definition: object.h:12
Definition: idvb.h:24