diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-04-23 15:38:16 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-04-23 15:38:16 +0200 |
commit | 160c6ec5eb369d309350e9fdf588e29d4ea215bd (patch) | |
tree | e3fc59f1dba568d3b2f895c6fca2626045a609dd /recording.h | |
parent | 88f13b1b296218589a44dac227964a8a47a75e50 (diff) | |
download | vdr-160c6ec5eb369d309350e9fdf588e29d4ea215bd.tar.gz vdr-160c6ec5eb369d309350e9fdf588e29d4ea215bd.tar.bz2 |
Implemented replay progress display
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/recording.h b/recording.h index 2e79a7da..3151896d 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'osm.c' for copyright information and * how to reach the author. * - * $Id: recording.h 1.3 2000/04/16 15:44:09 kls Exp $ + * $Id: recording.h 1.4 2000/04/23 09:50:40 kls Exp $ */ #ifndef __RECORDING_H @@ -17,9 +17,12 @@ void AssertFreeDiskSpace(void); class cRecording : public cListObject { -public: + friend class cRecordings; +private: + char *titleBuffer; char *name; char *fileName; +public: time_t start; int priority; int lifetime; @@ -28,6 +31,7 @@ public: cRecording(const char *FileName); ~cRecording(); const char *FileName(void); + const char *Title(char Delimiter = ' '); bool Delete(void); // Changes the file name so that it will no longer be visible in the OSM // Returns false in case of error |