1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00
vdr-plugin-iptv/sidscanner.h
Rolf Ahrenberg 53b5644973 Migration changes for git and UTF-8.
Updated contact information.
2008-08-23 08:15:30 +03:00

28 lines
544 B
C++

/*
* sidscanner.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SIDSCANNER_H
#define __SIDSCANNER_H
#include <vdr/channels.h>
#include <vdr/filter.h>
class cSidScanner : public cFilter {
private:
cChannel channel;
protected:
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
public:
cSidScanner(void);
virtual void SetStatus(bool On);
void SetChannel(const cChannel *Channel);
};
#endif // __SIDSCANNER_H