blob: 216924591725e31c80067c3d89e235a37ca84066 (
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
|
#ifndef VDR_LIVE_TNTCONFIG_H
#define VDR_LIVE_TNTCONFIG_H
#include "tntfeatures.h"
#include <tnt/tntnet.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
|