summaryrefslogtreecommitdiff
path: root/setupeepg.c
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-05-09 13:00:11 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2012-05-09 13:00:11 +0200
commitd91b6baad0e8f377254fdc67780602d03e745433 (patch)
tree49bc97aad45a5b64e09453d6ea69fc56b3fd0561 /setupeepg.c
parentc7f2963f994ef2b2e9862da82a7065a6067dad4f (diff)
downloadvdr-plugin-eepg-d91b6baad0e8f377254fdc67780602d03e745433.tar.gz
vdr-plugin-eepg-d91b6baad0e8f377254fdc67780602d03e745433.tar.bz2
move cSetupEEPG to separate files
Diffstat (limited to 'setupeepg.c')
-rw-r--r--setupeepg.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/setupeepg.c b/setupeepg.c
new file mode 100644
index 0000000..4c6693d
--- /dev/null
+++ b/setupeepg.c
@@ -0,0 +1,33 @@
+/*
+ * setupeepg.c
+ *
+ * Created on: 08.5.2012
+ * Author: d.petrovski
+ */
+
+#include "setupeepg.h"
+
+// --- cSetupEEPG -------------------------------------------------------
+
+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;
+}
+