diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-24 16:43:04 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-24 16:43:04 +0200 |
commit | 07d92eaee7d1ff37a6abfe873275b2f82a979271 (patch) | |
tree | 2ec763200083bc07820f099fc76ec079a6c91069 /recording.h | |
parent | 6602eb5c90210906273a5b9a15aa0d2d1d095a16 (diff) | |
download | vdr-07d92eaee7d1ff37a6abfe873275b2f82a979271.tar.gz vdr-07d92eaee7d1ff37a6abfe873275b2f82a979271.tar.bz2 |
Implemented 'summary' feature
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recording.h b/recording.h index eeea5609..e501af82 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.6 2000/04/24 09:45:49 kls Exp $ + * $Id: recording.h 1.7 2000/07/23 19:06:14 kls Exp $ */ #ifndef __RECORDING_H @@ -22,16 +22,18 @@ private: char *titleBuffer; char *fileName; char *name; + char *summary; public: time_t start; int priority; int lifetime; - cRecording(const char *Name, time_t Start, int Priority, int LifeTime); cRecording(cTimer *Timer); cRecording(const char *FileName); ~cRecording(); const char *FileName(void); const char *Title(char Delimiter = ' '); + const char *Summary(void) { return summary; } + bool WriteSummary(void); bool Delete(void); // Changes the file name so that it will no longer be visible in the "Recordings" menu // Returns false in case of error |