diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-07-20 16:06:51 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-07-20 16:06:51 +0000 |
commit | 4fb0ce9c0662a7b7c3bce712577743e2a56444c0 (patch) | |
tree | 8143d3de6e9d966fa33269ea0c9d3f112468c82f /epg_events.h | |
parent | b40d2c550444c61c25a1c2ec2dbd472dd11d2b62 (diff) | |
download | vdr-plugin-live-4fb0ce9c0662a7b7c3bce712577743e2a56444c0.tar.gz vdr-plugin-live-4fb0ce9c0662a7b7c3bce712577743e2a56444c0.tar.bz2 |
- Added support for EPG images: Specify the directory with your
EPG images via the new commandline option '-e <dir>' or
'--epgimages=<dir> like -P'live -e /video/epgimages'
Diffstat (limited to 'epg_events.h')
-rw-r--r-- | epg_events.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/epg_events.h b/epg_events.h index 8536463..f055045 100644 --- a/epg_events.h +++ b/epg_events.h @@ -2,6 +2,7 @@ #define VDR_LIVE_WHATS_ON_H #include <ctime> +#include <list> #include <vdr/plugin.h> #include <vdr/channels.h> @@ -179,6 +180,8 @@ namespace vdrlive * passed string informations */ static EpgInfoPtr CreateEpgInfo(const std::string& id, const std::string& caption, const std::string& info); + + static std::list<std::string> EpgImages(const std::string& epgid); private: }; }; // namespace vdrlive |