diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-02-28 10:51:42 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-02-28 10:51:42 +0100 |
commit | 4c0ab3d3e768cea51748d403e5b7d9ce64b6cbf2 (patch) | |
tree | 48384de893092821d4f4856e76d269c7aaadc64e /recording.h | |
parent | 3d309c498c528e67871fd38704208f38cff1f4e1 (diff) | |
download | vdr-4c0ab3d3e768cea51748d403e5b7d9ce64b6cbf2.tar.gz vdr-4c0ab3d3e768cea51748d403e5b7d9ce64b6cbf2.tar.bz2 |
Added cRecordingInfo::GetEvent()
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recording.h b/recording.h index 5256a8ee..151e7602 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 2.4 2009/01/24 15:24:19 kls Exp $ + * $Id: recording.h 2.5 2009/02/28 10:50:12 kls Exp $ */ #ifndef __RECORDING_H @@ -60,6 +60,7 @@ public: ~cRecordingInfo(); tChannelID ChannelID(void) const { return channelID; } const char *ChannelName(void) const { return channelName; } + const cEvent *GetEvent(void) const { return event; } const char *Title(void) const { return event->Title(); } const char *ShortText(void) const { return event->ShortText(); } const char *Description(void) const { return event->Description(); } |