blob: 118a6e5acf997bec8a19ac8a07f20cabba6e9bcd (
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
|
#ifndef VDR_LIVE_TNTCONFIG_H
#define VDR_LIVE_TNTCONFIG_H
#include <string>
#include <tnt/tntnet.h>
#include <vdr/config.h>
#include "tntfeatures.h"
namespace vdrlive {
class TntConfig
{
public:
static TntConfig const& Get();
void Configure(tnt::Tntnet& app) const;
private:
TntConfig();
TntConfig( TntConfig const& );
};
} // namespace vdrlive
#endif // VDR_LIVE_TNTCONFIG_H
|