blob: 9c30e441010e078277d02a7a54e51f9e0c0e06b2 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef VDR_LIVE_TNTCONFIG_H
#define VDR_LIVE_TNTCONFIG_H
#include <string>
#include <tnt/tntnet.h>
namespace vdrlive {
#if TNTVERSION >= 1606
class TntConfig
{
public:
static TntConfig const& Get();
void Configure(tnt::Tntnet& app) const;
private:
TntConfig();
TntConfig( TntConfig const& );
};
#else
class TntConfig
{
public:
static TntConfig const& Get();
std::string const& GetConfigPath() const { return m_configPath; }
private:
std::string m_propertiesPath;
std::string m_configPath;
TntConfig();
TntConfig( TntConfig const& );
void WriteProperties();
void WriteConfig();
};
#endif
} // namespace vdrlive
#endif // VDR_LIVE_TNTCONFIG_H
|