diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-23 17:33:08 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-23 17:33:08 +0000 |
commit | d0ec6ac5a5e8858d423923778fdd5667297f63c2 (patch) | |
tree | af131913b1cb7b657384ed1ab14d674e634c3b29 /setup.h | |
parent | 2a543304c089a0e8f942fe23fe3db59017b84a20 (diff) | |
download | vdr-plugin-live-d0ec6ac5a5e8858d423923778fdd5667297f63c2.tar.gz vdr-plugin-live-d0ec6ac5a5e8858d423923778fdd5667297f63c2.tar.bz2 |
- show auth part only when enabled
- common method Setup::SaveSetup to store setup values from osd and web frontend
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -39,6 +39,8 @@ public: void SetUseAuth(int auth) { m_useAuth = auth; } void SetScrenshotInterval(int interval) { m_screenshotInterval = interval; } + bool SaveSetup(); + bool ParseCommandLine( int argc, char* argv[] ); char const* CommandLineHelp() const; @@ -48,6 +50,9 @@ private: Setup(); Setup( Setup const& ); + // me + cPlugin* liveplugin; + mutable std::string m_helpString; // commandline options int m_serverPort; |