summaryrefslogtreecommitdiff
path: root/setupeepg.c
blob: 54f82437e475655f245585e553da6f18933ac1f6 (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.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
}

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

  return _setupEEPG;
}