summaryrefslogtreecommitdiff
path: root/radiocheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'radiocheck.h')
-rw-r--r--radiocheck.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/radiocheck.h b/radiocheck.h
new file mode 100644
index 0000000..5253842
--- /dev/null
+++ b/radiocheck.h
@@ -0,0 +1,27 @@
+/*
+ * radiocheck.h
+ *
+ * Created on: 27.05.2018
+ * Author: uli
+ */
+
+#ifndef RADIOCHECK_H_
+#define RADIOCHECK_H_
+
+#include <vdr/plugin.h>
+
+class cRadioCheck: public cThread {
+private:
+ static cRadioCheck *RadioCheck;
+protected:
+ virtual void Action(void);
+ void Stop(void);
+public:
+ cRadioCheck(void);
+ virtual ~cRadioCheck();
+ static void Init(void);
+ static void Exit(void);
+};
+
+
+#endif /* RADIOCHECK_H_ */