2014-11-29 14:37:21 +01:00
|
|
|
/*
|
|
|
|
* discoverif.h: SAT>IP plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SATIP_DISCOVERIF_H
|
|
|
|
#define __SATIP_DISCOVERIF_H
|
|
|
|
|
|
|
|
class cSatipDiscoverIf {
|
|
|
|
public:
|
|
|
|
cSatipDiscoverIf() {}
|
|
|
|
virtual ~cSatipDiscoverIf() {}
|
|
|
|
virtual void SetUrl(const char *urlP) = 0;
|
|
|
|
|
|
|
|
private:
|
2015-08-16 00:38:03 +02:00
|
|
|
explicit cSatipDiscoverIf(const cSatipDiscoverIf&);
|
2014-11-29 14:37:21 +01:00
|
|
|
cSatipDiscoverIf& operator=(const cSatipDiscoverIf&);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __SATIP_DISCOVERIF_H
|