summaryrefslogtreecommitdiff
path: root/stvw_cfg.h
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-09-01 21:09:15 +0200
committerthlo <smarttv640@gmail.com>2013-09-01 21:09:15 +0200
commit417202343b64947e80dbe14b4ab456cc6442e88c (patch)
tree1e73bb20f1ac91725dfd1e0f124c419c1fe7a391 /stvw_cfg.h
parent752587bccad186db28df673f84690eb265ecd991 (diff)
downloadvdr-plugin-smarttvweb-417202343b64947e80dbe14b4ab456cc6442e88c.tar.gz
vdr-plugin-smarttvweb-417202343b64947e80dbe14b4ab456cc6442e88c.tar.bz2
New enable flag for RecCmds and new Port parameter in smarttvweb.conf. Bug fixes.
Diffstat (limited to 'stvw_cfg.h')
-rwxr-xr-xstvw_cfg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/stvw_cfg.h b/stvw_cfg.h
index d894820..9001fe7 100755
--- a/stvw_cfg.h
+++ b/stvw_cfg.h
@@ -54,6 +54,8 @@ class cSmartTvConfig {
eGroupSep mGroupSep;
string mServerAddress;
+ int mServerPort;
+ bool mRecCmds;
public:
cSmartTvConfig(string dir);
@@ -70,6 +72,8 @@ class cSmartTvConfig {
int getLiveChannels() {return mLiveChannels; };
eGroupSep getGroupSep() { return mGroupSep; };
string getServerAddress() { return mServerAddress; };
+ int getServerPort() { return mServerPort; };
+ bool getRecCmds() { return mRecCmds; };
};
#endif