diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 12:25:54 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 12:25:54 +0100 |
commit | 7881effd9bfcf2fca916308f63f25417f3b6d0cf (patch) | |
tree | f12f6ebac98a840794bfcfc299721a0844f5539c /recording.h | |
parent | 60e937f57bafb8dea3bb5fc8097afb4b132db6c6 (diff) | |
download | vdr-7881effd9bfcf2fca916308f63f25417f3b6d0cf.tar.gz vdr-7881effd9bfcf2fca916308f63f25417f3b6d0cf.tar.bz2 |
Implemented cRecordingInfo::ChannelID()
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 a114c0bf..f0c3c0e5 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.52 2006/02/25 10:51:15 kls Exp $ + * $Id: recording.h 1.53 2006/02/25 12:24:46 kls Exp $ */ #ifndef __RECORDING_H @@ -50,6 +50,7 @@ private: void SetAux(const char *Aux); public: ~cRecordingInfo(); + tChannelID ChannelID(void) { return channelID; } const char *Title(void) const { return event->Title(); } const char *ShortText(void) const { return event->ShortText(); } const char *Description(void) const { return event->Description(); } |