summaryrefslogtreecommitdiff
path: root/zaphistory_osditem.h
diff options
context:
space:
mode:
Diffstat (limited to 'zaphistory_osditem.h')
-rw-r--r--zaphistory_osditem.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/zaphistory_osditem.h b/zaphistory_osditem.h
new file mode 100644
index 0000000..7d60c38
--- /dev/null
+++ b/zaphistory_osditem.h
@@ -0,0 +1,23 @@
+#ifndef __ZAPHISTORY_OSDITEM_H
+#define __ZAPHISTORY_OSDITEM_H
+
+/* cZapHistoryOsdItem
+
+ Base class for history menu items to display a channel
+ */
+
+#include <vdr/menuitems.h>
+#include "zaphistorychannel.h"
+
+// --- cMenuMyScheduleItem ------------------------------------------------------
+
+class cZapHistoryOsdItem : public cOsdItem {
+ protected:
+ cZapHistoryChannel *zapChannel;
+
+ public:
+ cZapHistoryOsdItem(cZapHistoryChannel *Channel);
+ cZapHistoryChannel *Channel();
+};
+
+#endif