diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 09:53:54 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 09:53:54 +0200 |
commit | 7114258ebd27e302eba4be88b546662c163396f4 (patch) | |
tree | 4cfbb6e134ed4fd9a4c1cf3bf567abfde09e3d12 /recording.h | |
parent | 1855ab0ef3ff5ef220cbd3bc486b0c4d66063073 (diff) | |
download | vdr-7114258ebd27e302eba4be88b546662c163396f4.tar.gz vdr-7114258ebd27e302eba4be88b546662c163396f4.tar.bz2 |
cRecordingInfo stores channelID itself (preparation for change in cEvent)
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recording.h b/recording.h index 893c9a23..0adb036e 100644 --- a/recording.h +++ b/recording.h @@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.37 2005/05/22 10:29:02 kls Exp $ + * $Id: recording.h 1.38 2005/05/28 09:34:07 kls Exp $ */ #ifndef __RECORDING_H #define __RECORDING_H #include <time.h> +#include "channels.h" #include "config.h" #include "epg.h" #include "thread.h" @@ -36,6 +37,7 @@ public: class cRecordingInfo { friend class cRecording; private: + tChannelID channelID; const cEvent *event; cEvent *ownEvent; cRecordingInfo(const cEvent *Event = NULL); |