blob: 8971f209b74dc3d5e9f6fe8bdbffca4d9a28b837 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* 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/epg.h>
#include "regexp.h"
class cEpgfixerEpgHandler : public cEpgHandler
{
private:
bool ApplyRegexp(cRegexp *regexp, cEvent *Event, const char *input);
void FixOriginalEpgBugs(cEvent *event);
bool FixBugs(cEvent *Event);
public:
cEpgfixerEpgHandler(void) {};
virtual bool FixEpgBugs(cEvent *Event);
};
#endif //__EPGFIXER_EPGHANDLER_H
|