blob: de090afd56b2c50c96b71939ecac4bbc08f83114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* epghandler.h: EpgHandler
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __EPGFIXER_EPGHANDLER_H
#define __EPGFIXER_EPGHANDLER_H
#include <vdr/channels.h>
#include <vdr/epg.h>
class cEpgfixerEpgHandler : public cEpgHandler
{
public:
cEpgfixerEpgHandler(void) {};
virtual bool HandleEvent(cEvent *Event);
virtual bool IgnoreChannel(const cChannel *Channel);
virtual bool FixEpgBugs(cEvent *Event);
};
#endif //__EPGFIXER_EPGHANDLER_H
|