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