summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-11-19 18:53:09 +0100
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-11-19 18:53:09 +0100
commita5c871c47c721e1179bee7c4695169dd3344c0c2 (patch)
treec99be1c122c7ba57791ff68c512b661125acbcb6 /setup.h
parentda560175d35965dbca9856f7192e0da172fa7d32 (diff)
downloadvdr-plugin-live-a5c871c47c721e1179bee7c4695169dd3344c0c2.tar.gz
vdr-plugin-live-a5c871c47c721e1179bee7c4695169dd3344c0c2.tar.bz2
new setup option to display channels without EPG
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.h b/setup.h
index c341a5e..1cf153f 100644
--- a/setup.h
+++ b/setup.h
@@ -61,6 +61,7 @@ class Setup
std::string const GetStreamdevType() const { return m_streamdevType; }
bool GetShowIMDb() const { return m_showIMDb != 0; }
std::string const GetEpgImageDir() { return m_epgimagedir; }
+ bool GetShowChannelsWithoutEPG() const { return m_showChannelsWithoutEPG != 0; }
void SetLastChannel(int lastChannel) { m_lastChannel = lastChannel; }
void SetAdminLogin(std::string const & login) { m_adminLogin = login; }
@@ -80,6 +81,7 @@ class Setup
void SetStreamdevPort(int port) { m_streamdevPort = port; }
void SetStreamdevType(std::string const & type) { m_streamdevType = type; }
void SetShowIMDb(bool show) { m_showIMDb = show ? 1 : 0; }
+ void SetShowChannelsWithoutEPG(bool show) { m_showChannelsWithoutEPG = show ? 1 : 0; }
bool SaveSetup();
@@ -130,6 +132,7 @@ class Setup
int m_streamdevPort;
std::string m_streamdevType;
int m_showIMDb;
+ int m_showChannelsWithoutEPG;
bool CheckServerPort();
bool CheckServerIps();