summaryrefslogtreecommitdiff
path: root/setup.h
diff options
context:
space:
mode:
authorSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-02 19:18:27 +0000
committerSascha Volkenandt <sascha (at) akv-soft (dot) de>2007-01-02 19:18:27 +0000
commit48c46dfdd986ad4a7a0692d05992f7882bef6a88 (patch)
tree88a3a88a7ab43632850569cba3ab48a1924d9e52 /setup.h
downloadvdr-plugin-live-48c46dfdd986ad4a7a0692d05992f7882bef6a88.tar.gz
vdr-plugin-live-48c46dfdd986ad4a7a0692d05992f7882bef6a88.tar.bz2
- initial checkin
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