summaryrefslogtreecommitdiff
path: root/source.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2012-04-27 07:14:27 +0200
committerJochen Dolze <vdr@dolze.de>2012-04-27 07:14:27 +0200
commit40889067514769b356eb50d60d6a75889aeb99e3 (patch)
tree186f332caabe653bd458773623bd49739bb10ef2 /source.h
parentfaab1db375b46658959c22ddbd1977bc1fdeb50b (diff)
downloadvdr-plugin-xmltv2vdr-40889067514769b356eb50d60d6a75889aeb99e3.tar.gz
vdr-plugin-xmltv2vdr-40889067514769b356eb50d60d6a75889aeb99e3.tar.bz2
Added -e parameter for path to episodes dir
Diffstat (limited to 'source.h')
-rw-r--r--source.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source.h b/source.h
index 751752d..1937a7a 100644
--- a/source.h
+++ b/source.h
@@ -71,7 +71,7 @@ private:
cEPGChannels channels;
public:
cEPGSource(const char *Name,const char *ConfDir,const char *EPGFile,
- cEPGMappings *Maps, cTEXTMappings *Texts);
+ const char *EPDir, cEPGMappings *Maps, cTEXTMappings *Texts);
~cEPGSource();
bool Trace()
{
@@ -156,8 +156,9 @@ public:
class cEPGSources : public cList<cEPGSource>
{
public:
- void ReadIn(const char *ConfDir, const char *EpgFile, cEPGMappings *EPGMappings,
- cTEXTMappings *TextMappings, const char *SourceOrder, bool Reload=false);
+ void ReadIn(const char *ConfDir, const char *EpgFile, const char *EPDir,
+ cEPGMappings *EPGMappings, cTEXTMappings *TextMappings,
+ const char *SourceOrder, bool Reload=false);
bool RunItNow();
time_t NextRunTime();
bool Exists(const char *Name);