summaryrefslogtreecommitdiff
path: root/source.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2012-05-29 23:48:01 +0200
committerJochen Dolze <vdr@dolze.de>2012-05-29 23:48:01 +0200
commit68eae31a0fca0a2f2d218a5cf41ec668f08530f6 (patch)
tree2f41441581796d7896d56584e4632d907c4fad94 /source.h
parent997e0905ee1c042edb7d624d429281b7c6f76455 (diff)
downloadvdr-plugin-xmltv2vdr-68eae31a0fca0a2f2d218a5cf41ec668f08530f6.tar.gz
vdr-plugin-xmltv2vdr-68eae31a0fca0a2f2d218a5cf41ec668f08530f6.tar.bz2
Added start/stop of epgsearch searchtimer
Diffstat (limited to 'source.h')
-rw-r--r--source.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source.h b/source.h
index 80ff92e..64ed651 100644
--- a/source.h
+++ b/source.h
@@ -169,7 +169,10 @@ public:
class cEPGSources : public cList<cEPGSource>
{
+private:
+ bool epgsearchexists;
public:
+ cEPGSources();
void ReadIn(cGlobals *Global, const char *SourceOrder,
bool Reload=false);
bool RunItNow();
@@ -179,6 +182,10 @@ public:
cEPGSource *GetSourceDB(const char *EpgFile);
int GetSourceIdx(const char *Name);
void Remove();
+ bool EPGSearchExists()
+ {
+ return epgsearchexists;
+ }
};
class cPluginXmltv2vdr;