diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-06-17 13:13:47 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-06-17 13:13:47 +0200 |
commit | da376c060349470a5c54753f66bb0305746b8f78 (patch) | |
tree | 0a4243bd413819ce1a075982c839a596fb75011a /recording.h | |
parent | efbb48dbaf648caccd0a7591558252f8e00f0071 (diff) | |
download | vdr-da376c060349470a5c54753f66bb0305746b8f78.tar.gz vdr-da376c060349470a5c54753f66bb0305746b8f78.tar.bz2 |
The info.vdr file now also stores the name of the channel
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 f9db505d..045bb24f 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.56 2006/12/01 15:06:07 kls Exp $ + * $Id: recording.h 1.57 2007/06/17 12:53:05 kls Exp $ */ #ifndef __RECORDING_H @@ -42,6 +42,7 @@ class cRecordingInfo { friend class cRecording; private: tChannelID channelID; + char *channelName; const cEvent *event; cEvent *ownEvent; char *aux; @@ -51,6 +52,7 @@ private: public: ~cRecordingInfo(); tChannelID ChannelID(void) const { return channelID; } + const char *ChannelName(void) const { return channelName; } const char *Title(void) const { return event->Title(); } const char *ShortText(void) const { return event->ShortText(); } const char *Description(void) const { return event->Description(); } |