diff options
author | Dime <dime@dime-dell-system-xps-l702x.ein-sof.net.mk> | 2012-05-13 13:31:03 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-18 09:20:35 +0200 |
commit | 68eb397f7d419c4caf58220b62de22ac3244d682 (patch) | |
tree | a4854dcd9a850964c1d6b62c1dbe827fab585181 /epghandler.h | |
parent | 4a30d62b0614e2a2af4b862e9ab5c5c471c8d5a5 (diff) | |
download | vdr-plugin-eepg-68eb397f7d419c4caf58220b62de22ac3244d682.tar.gz vdr-plugin-eepg-68eb397f7d419c4caf58220b62de22ac3244d682.tar.bz2 |
use the original eepg Short Text and Description if missing in EIT
Diffstat (limited to 'epghandler.h')
-rw-r--r-- | epghandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/epghandler.h b/epghandler.h index fd4911e..3256153 100644 --- a/epghandler.h +++ b/epghandler.h @@ -8,6 +8,7 @@ #ifndef CEEPGHANDLER_H_ #define CEEPGHANDLER_H_ #include <vdr/epg.h> +#include <string> class cEEpgHandler : public cEpgHandler { public: @@ -28,6 +29,10 @@ public: 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; }; #endif /* CEEPGHANDLER_H_ */ |