summaryrefslogtreecommitdiff
path: root/epgsearch.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2007-04-17 17:36:02 +0000
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2007-04-17 17:36:02 +0000
commita85f88f780138c94009dd20c157d69beb903123f (patch)
tree34a5eff5318988c2ac8e7ed9eedd6744edcf059d /epgsearch.h
parent3c4be91ad8ef4b7b9e50f9510a864b2f31cc37c2 (diff)
downloadvdr-plugin-live-a85f88f780138c94009dd20c157d69beb903123f.tar.gz
vdr-plugin-live-a85f88f780138c94009dd20c157d69beb903123f.tar.bz2
added missing features 'allowed repeats' and 'only repeats within ... days'
Diffstat (limited to 'epgsearch.h')
-rw-r--r--epgsearch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epgsearch.h b/epgsearch.h
index 4ca37f4..0b80ecb 100644
--- a/epgsearch.h
+++ b/epgsearch.h
@@ -99,6 +99,10 @@ public:
void SetExtEPGInfo(std::vector< std::string > ExtEPGInfo) { m_ExtEPGInfo = ExtEPGInfo; }
bool AvoidRepeats() const { return m_avoidrepeats; }
void SetAvoidRepeats(bool avoidrepeats) { m_avoidrepeats = avoidrepeats; }
+ int AllowedRepeats() const { return m_allowedrepeats; }
+ void SetAllowedRepeats(int allowedrepeats) { m_allowedrepeats = allowedrepeats; }
+ int RepeatsWithinDays() const { return m_repeatsWithinDays; }
+ void SetRepeatsWithinDays(int repeatsWithinDays) { m_repeatsWithinDays = repeatsWithinDays; }
bool CompareTitle() const { return m_compareTitle; }
void SetCompareTitle(bool compareTitle) { m_compareTitle = compareTitle; }
bool CompareSubtitle() const { return m_compareSubtitle; }