diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-03 11:22:16 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-03 11:22:16 +0200 |
commit | 05ea68e2bb35a9635f968a690cba424addde3051 (patch) | |
tree | dc13b3a85367cd8c700f95c0ae7a6ba03c2adbad /recording.h | |
parent | c23b6a7e1390aee0708fe65a4dfbc34a6364e446 (diff) | |
download | vdr-05ea68e2bb35a9635f968a690cba424addde3051.tar.gz vdr-05ea68e2bb35a9635f968a690cba424addde3051.tar.bz2 |
Made cRecordingInfo::Read(FILE *f) private
Diffstat (limited to 'recording.h')
-rw-r--r-- | recording.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.h b/recording.h index 459c1ca0..3410ae23 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.17 2011/03/20 10:33:30 kls Exp $ + * $Id: recording.h 2.18 2011/04/03 11:14:37 kls Exp $ */ #ifndef __RECORDING_H @@ -57,6 +57,7 @@ private: int lifetime; char *fileName; cRecordingInfo(const cChannel *Channel = NULL, const cEvent *Event = NULL); + bool Read(FILE *f); void SetData(const char *Title, const char *ShortText, const char *Description); void SetAux(const char *Aux); public: @@ -72,7 +73,6 @@ public: const char *Aux(void) const { return aux; } double FramesPerSecond(void) const { return framesPerSecond; } void SetFramesPerSecond(double FramesPerSecond); - bool Read(FILE *f); bool Write(FILE *f, const char *Prefix = "") const; bool Read(void); bool Write(void) const; |