summaryrefslogtreecommitdiff
path: root/recording.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-25 12:09:22 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-25 12:09:22 +0100
commitbc2e59909fed6772360effd9d11ccae65af26a02 (patch)
tree84ccf0ff770152e4b15b4e0051c567537be801b8 /recording.h
parent6b747233362eccf5e6f9609e852f7f1cb42c49b1 (diff)
downloadvdr-bc2e59909fed6772360effd9d11ccae65af26a02.tar.gz
vdr-bc2e59909fed6772360effd9d11ccae65af26a02.tar.bz2
The 'summary' field of a timer definition has been renamed to 'aux'
Diffstat (limited to 'recording.h')
-rw-r--r--recording.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/recording.h b/recording.h
index 4ad4077a..a114c0bf 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.51 2006/02/18 16:03:40 kls Exp $
+ * $Id: recording.h 1.52 2006/02/25 10:51:15 kls Exp $
*/
#ifndef __RECORDING_H
@@ -44,14 +44,17 @@ private:
tChannelID channelID;
const cEvent *event;
cEvent *ownEvent;
+ char *aux;
cRecordingInfo(const cChannel *Channel = NULL, const cEvent *Event = NULL);
void SetData(const char *Title, const char *ShortText, const char *Description);
+ void SetAux(const char *Aux);
public:
~cRecordingInfo();
const char *Title(void) const { return event->Title(); }
const char *ShortText(void) const { return event->ShortText(); }
const char *Description(void) const { return event->Description(); }
const cComponents *Components(void) const { return event->Components(); }
+ const char *Aux(void) const { return aux; }
bool Read(FILE *f);
bool Write(FILE *f, const char *Prefix = "") const;
};