diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-10-21 22:44:45 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-10-21 22:44:45 +0200 |
commit | 73393d5bde0f6a3c1ee3b855d7535d7e688c2287 (patch) | |
tree | 1816508a7a12b08360a3510a11be5922253728a8 /epgsearch.h | |
parent | 8f23e11f853946651c8821d02b014d861b6c0986 (diff) | |
download | vdr-plugin-live-73393d5bde0f6a3c1ee3b855d7535d7e688c2287.tar.gz vdr-plugin-live-73393d5bde0f6a3c1ee3b855d7535d7e688c2287.tar.bz2 |
some fixes for the directory entry within the edit timer menu, requires
epgsearch-0.9.25.beta6
Diffstat (limited to 'epgsearch.h')
-rw-r--r-- | epgsearch.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/epgsearch.h b/epgsearch.h index 39ee564..6cb3cec 100644 --- a/epgsearch.h +++ b/epgsearch.h @@ -393,7 +393,7 @@ public: typedef recordingdirs::iterator iterator; typedef recordingdirs::const_iterator const_iterator; - RecordingDirs(); + RecordingDirs(bool shortList=false); iterator begin() { return m_set.begin(); } const_iterator begin() const { return m_set.begin(); } @@ -411,6 +411,12 @@ public: static bool WriteValue(const std::string& entry, const std::string& value); }; +class EPGSearchExpr +{ +public: + static std::string EvaluateExpr(const std::string& expr, const cEvent* event); +}; + } // namespace vdrlive |