blob: d3a60277bfb5cf6a1a4ad393a4a732786ea5338a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|