diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +#ifndef VDR_LIVE_SETUP_H +#define VDR_LIVE_SETUP_H + +#include <string> + +namespace vdrlive { + +class Setup +{ +public: + static Setup& Get(); + + std::string const& GetLibraryPath() const { return m_libraryPath; } + + bool Parse( int argc, char* argv[] ); + +private: + Setup(); + Setup( Setup const& ); + + std::string m_libraryPath; +}; + +} // namespace vdrlive + +#endif // VDR_LIVE_SETUP_H |