summaryrefslogtreecommitdiff
path: root/epghandler.h
blob: cc383781f6c6d7de6bfd9fda8b96a3a3458f7077 (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>

class cEpgfixerEpgHandler : public cEpgHandler
{
private:
  void FixOriginalEpgBugs(cEvent *event);
  bool FixCharSets(cEvent *Event);
  bool FixBugs(cEvent *Event);
  void StripHTML(cEvent *Event);
public:
  cEpgfixerEpgHandler(void) {};
  virtual bool FixEpgBugs(cEvent *Event);
};

#endif //__EPGFIXER_EPGHANDLER_H