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

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

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

cSetupEEPG* cSetupEEPG::_setupEEPG = NULL;

cSetupEEPG::cSetupEEPG (void)
:ConfDir(NULL)
{
  ConfDir = NULL;
  OptPat = 1;
  OrderInfo = 1;
  RatingInfo = 1;
  FixEpg = 0;
  DisplayMessage = 1;
  ProcessEIT = 0;
  ReplaceEmptyShText = 0;

#ifdef DEBUG
  LogLevel = 0;
#endif
}

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

  return _setupEEPG;
}