summaryrefslogtreecommitdiff
path: root/zaphistory_osditem.h
blob: 7d60c386acceb51e6a227b9c733bb60ef924287c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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