blob: 7e8cba970e6bf26bda22f79b59cd58a663b5ac2a (
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_I18N_H
#define VDR_LIVE_I18N_H
#include <string>
namespace vdrlive {
class I18n
{
friend I18n& LiveI18n();
private:
std::string m_encoding;
I18n( I18n const& ); // don't copy
I18n();
public:
std::string const& CharacterEncoding() const { return m_encoding; }
};
I18n& LiveI18n();
} // namespace vdrlive
#endif // VDR_LIVE_I18N_H
|