summaryrefslogtreecommitdiff
path: root/setupeepg.h
diff options
context:
space:
mode:
Diffstat (limited to 'setupeepg.h')
-rw-r--r--setupeepg.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/setupeepg.h b/setupeepg.h
new file mode 100644
index 0000000..f5e342a
--- /dev/null
+++ b/setupeepg.h
@@ -0,0 +1,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_ */