summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2007-07-20 16:06:51 +0000
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2007-07-20 16:06:51 +0000
commit4fb0ce9c0662a7b7c3bce712577743e2a56444c0 (patch)
tree8143d3de6e9d966fa33269ea0c9d3f112468c82f /setup.h
parentb40d2c550444c61c25a1c2ec2dbd472dd11d2b62 (diff)
downloadvdr-plugin-live-4fb0ce9c0662a7b7c3bce712577743e2a56444c0.tar.gz
vdr-plugin-live-4fb0ce9c0662a7b7c3bce712577743e2a56444c0.tar.bz2
- Added support for EPG images: Specify the directory with your
EPG images via the new commandline option '-e <dir>' or '--epgimages=<dir> like -P'live -e /video/epgimages'
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 2ac7f06..73d825c 100644
--- a/setup.h
+++ b/setup.h
@@ -48,6 +48,7 @@ class Setup
bool GetShowLogo() const { return m_showLogo != 0; }
bool GetUseAjax() const { return m_useAjax != 0; }
bool GetShowInfoBox() const { return m_showInfoBox != 0; }
+ std::string GetEpgImageDir() { return m_epgimagedir; }
void SetLastChannel(int lastChannel) { m_lastChannel = lastChannel; }
void SetAdminLogin(std::string login) { m_adminLogin = login; }
@@ -85,6 +86,8 @@ class Setup
// commandline options
int m_serverPort;
IpList m_serverIps;
+ std::string m_epgimagedir;
+
// setup options
int m_lastChannel;
int m_screenshotInterval;