diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-17 14:15:55 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-17 14:15:55 +0200 |
commit | 3a1c661a2573115e965161f78688c633a92dd10b (patch) | |
tree | d278f3f6bbd6d87124bc6826a938a68885110fbc /epghandler.h | |
parent | d83f0216f4eee94ea6f945cc1fab83a5e93b8303 (diff) | |
download | vdr-plugin-eepg-3a1c661a2573115e965161f78688c633a92dd10b.tar.gz vdr-plugin-eepg-3a1c661a2573115e965161f78688c633a92dd10b.tar.bz2 |
removed EIT filter for NA since it should be done by epg-handler
modified indentation
Diffstat (limited to 'epghandler.h')
-rw-r--r-- | epghandler.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/epghandler.h b/epghandler.h index 8d3615a..16dbca3 100644 --- a/epghandler.h +++ b/epghandler.h @@ -13,27 +13,27 @@ class cEEpgHandler : public cEpgHandler { public: - cEEpgHandler(); - virtual ~cEEpgHandler(); - virtual bool IgnoreChannel(const cChannel *Channel) { return false; } - virtual bool HandleEitEvent(cSchedule *Schedule, const SI::EIT::Event *EitEvent, uchar TableID, uchar Version); - virtual bool SetEventID(cEvent *Event, tEventID EventID); - virtual bool SetTitle(cEvent *Event, const char *Title); - virtual bool SetShortText(cEvent *Event, const char *ShortText); - virtual bool SetDescription(cEvent *Event, const char *Description); - virtual bool SetContents(cEvent *Event, uchar *Contents); - virtual bool SetParentalRating(cEvent *Event, int ParentalRating); - virtual bool SetStartTime(cEvent *Event, time_t StartTime); - virtual bool SetDuration(cEvent *Event, int Duration); - virtual bool SetVps(cEvent *Event, time_t Vps); - virtual bool FixEpgBugs(cEvent *Event) { return false; } - virtual bool HandleEvent(cEvent *Event); - virtual bool SortSchedule(cSchedule *Schedule); - virtual bool DropOutdated(cSchedule *Schedule, time_t SegmentStart, time_t SegmentEnd, uchar TableID, uchar Version); + cEEpgHandler(); + virtual ~cEEpgHandler(); + virtual bool IgnoreChannel(const cChannel *Channel) { return false; } + virtual bool HandleEitEvent(cSchedule *Schedule, const SI::EIT::Event *EitEvent, uchar TableID, uchar Version); + virtual bool SetEventID(cEvent *Event, tEventID EventID); + virtual bool SetTitle(cEvent *Event, const char *Title); + virtual bool SetShortText(cEvent *Event, const char *ShortText); + virtual bool SetDescription(cEvent *Event, const char *Description); + virtual bool SetContents(cEvent *Event, uchar *Contents); + virtual bool SetParentalRating(cEvent *Event, int ParentalRating); + virtual bool SetStartTime(cEvent *Event, time_t StartTime); + virtual bool SetDuration(cEvent *Event, int Duration); + virtual bool SetVps(cEvent *Event, time_t Vps); + virtual bool FixEpgBugs(cEvent *Event) { return false; } + virtual bool HandleEvent(cEvent *Event); + virtual bool SortSchedule(cSchedule *Schedule); + virtual bool DropOutdated(cSchedule *Schedule, time_t SegmentStart, time_t SegmentEnd, uchar TableID, uchar Version); private: - std::string origShortText; - std::string origDescription; + std::string origShortText; + std::string origDescription; }; #endif /*APIVERSNUM > 10725*/ |