summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'setup.h')
-rw-r--r--setup.h26
1 files changed, 26 insertions, 0 deletions
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 <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