2014-03-08 12:07:47 +01:00
|
|
|
/*
|
|
|
|
* deviceif.h: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SATIP_DEVICEIF_H
|
|
|
|
#define __SATIP_DEVICEIF_H
|
|
|
|
|
|
|
|
class cSatipDeviceIf {
|
|
|
|
public:
|
|
|
|
cSatipDeviceIf() {}
|
|
|
|
virtual ~cSatipDeviceIf() {}
|
|
|
|
virtual void WriteData(u_char *bufferP, int lengthP) = 0;
|
2014-04-06 12:37:45 +02:00
|
|
|
virtual int GetId(void) = 0;
|
2015-01-05 23:58:35 +01:00
|
|
|
virtual int GetPmtPid(void) = 0;
|
2015-01-09 14:42:03 +01:00
|
|
|
virtual int GetCISlot(void) = 0;
|
2014-03-08 12:07:47 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
cSatipDeviceIf(const cSatipDeviceIf&);
|
|
|
|
cSatipDeviceIf& operator=(const cSatipDeviceIf&);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __SATIP_DEVICEIF_H
|