blob: f5e342a532c7f47e2f099e65b6f8d6edbd3c0f34 (
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
|
/*
* setupeepg.h
*
* Created on: 08.5.2012
* Author: d.petrovski
*/
#ifndef SETUPEEPG_H_
#define SETUPEEPG_H_
class cSetupEEPG
{
public:
int OptPat;
int OrderInfo;
int RatingInfo;
int FixEpg;
int DisplayMessage;
int ProcessEIT;
#ifdef DEBUG
int LogLevel;
#endif
public:
static cSetupEEPG* getInstance();
private:
cSetupEEPG (void);
cSetupEEPG(cSetupEEPG const&); // copy constructor is private
cSetupEEPG& operator=(cSetupEEPG const&); // assignment operator is private
static cSetupEEPG* _setupEEPG;
};
#endif /* SETUPEEPG_H_ */
|