From 48c46dfdd986ad4a7a0692d05992f7882bef6a88 Mon Sep 17 00:00:00 2001 From: Sascha Volkenandt Date: Tue, 2 Jan 2007 19:18:27 +0000 Subject: - initial checkin --- setup.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.h (limited to 'setup.h') diff --git a/setup.h b/setup.h new file mode 100644 index 0000000..d3a6027 --- /dev/null +++ b/setup.h @@ -0,0 +1,26 @@ +#ifndef VDR_LIVE_SETUP_H +#define VDR_LIVE_SETUP_H + +#include + +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 -- cgit v1.2.3