mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
26 lines
585 B
C++
26 lines
585 B
C++
/*
|
|
* 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;
|
|
virtual int GetId(void) = 0;
|
|
virtual int GetPmtPid(void) = 0;
|
|
virtual int GetCISlot(void) = 0;
|
|
|
|
private:
|
|
cSatipDeviceIf(const cSatipDeviceIf&);
|
|
cSatipDeviceIf& operator=(const cSatipDeviceIf&);
|
|
};
|
|
|
|
#endif // __SATIP_DEVICEIF_H
|