summaryrefslogtreecommitdiff
path: root/setupeepg.c
blob: 4d9471ebe55481dd879412606fa111823a154546 (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
/*
 * setupeepg.c
 *
 *  Created on: 08.5.2012
 *      Author: d.petrovski
 */

#include <stddef.h>
#include "setupeepg.h"

// --- cSetupEEPG -------------------------------------------------------

cSetupEEPG* cSetupEEPG::_setupEEPG = NULL;

cSetupEEPG::cSetupEEPG (void)
{
  OptPat = 1;
  OrderInfo = 1;
  RatingInfo = 1;
  FixEpg = 0;
  DisplayMessage = 1;
  ProcessEIT = 0;
#ifdef DEBUG
  LogLevel = 0;
#endif

}

static cSetupEEPG* cSetupEEPG::getInstance()
{
	if (!_setupEEPG)
		_setupEEPG = new cSetupEEPG();

	return _setupEEPG;
}