blob: 3bd98d60a87e13a288d2e0f695a22b9eb7163de8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* zaphistory_osditem.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#include "zaphistory_osditem.h"
// --- cZapHistoryOsdItem ------------------------------------------------------
cZapHistoryOsdItem::cZapHistoryOsdItem(cZapHistoryChannel *Channel)
{
zapChannel = Channel;
}
cZapHistoryChannel* cZapHistoryOsdItem::Channel() {
return zapChannel;
}
|