summaryrefslogtreecommitdiff
path: root/status.h
diff options
context:
space:
mode:
Diffstat (limited to 'status.h')
-rw-r--r--status.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/status.h b/status.h
new file mode 100644
index 0000000..9fd7043
--- /dev/null
+++ b/status.h
@@ -0,0 +1,29 @@
+/*
+ * status.h: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+#ifndef __status_h_
+#define __status_h_
+
+#include <vdr/status.h>
+
+#include "filter.h"
+#include "global.h"
+
+// --- cStatusInfosatepg
+class cStatusInfosatepg : public cStatus {
+private:
+ cFilterInfosatepg *myFilter;
+ cDevice *myFilterDevice;
+ cGlobalInfosatepg *global;
+protected:
+ virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
+public:
+ cStatusInfosatepg(cGlobalInfosatepg *Global);
+ virtual ~cStatusInfosatepg(void);
+ };
+
+#endif