diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-04 20:27:47 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-04 20:27:47 +0000 |
commit | 86f4f5b117303cb35c0783b11b4d3f2fd70a203b (patch) | |
tree | d125deaa248114e1c20f0fe2625a783b47999dbf /setup.h | |
parent | fde265c4fa7d38aec0b0fdcee006bb9adee4f8af (diff) | |
download | vdr-plugin-live-86f4f5b117303cb35c0783b11b4d3f2fd70a203b.tar.gz vdr-plugin-live-86f4f5b117303cb35c0783b11b4d3f2fd70a203b.tar.bz2 |
- added setup option ScreenshotInterval
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,7 @@ public: IpList const& GetServerIps() const { return m_serverIps; } // vdr-setup int GetLastChannel() const { return m_lastChannel == 0 ? std::numeric_limits< int >::max() : m_lastChannel; } + int GetScreenshotInterval() const { return m_screenshotInterval; } bool ParseCommandLine( int argc, char* argv[] ); char const* CommandLineHelp() const; @@ -40,6 +41,7 @@ private: IpList m_serverIps; // vdr-setup int m_lastChannel; + int m_screenshotInterval; bool CheckLibraryPath(); bool CheckServerPort(); |