summaryrefslogtreecommitdiff
path: root/epghandler.h
blob: 2e03d25c576464a038b2abfbb00867cc5f3b78ab (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
26
27
28
/*
 * 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 HandleEvent(cEvent *Event);
  virtual bool IgnoreChannel(const cChannel *Channel);
  virtual bool FixEpgBugs(cEvent *Event);
};

#endif //__EPGFIXER_EPGHANDLER_H