From 2b3556b460665d9a4036b1623e7e7ff5ff6d37d8 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 26 Dec 2020 15:49:01 +0100 Subject: Implemented "Pattern Timers" --- recording.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'recording.h') diff --git a/recording.h b/recording.h index 1ba16bdc..6f26f2f6 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 4.10 2020/09/16 13:48:33 kls Exp $ + * $Id: recording.h 5.1 2020/12/26 15:49:01 kls Exp $ */ #ifndef __RECORDING_H @@ -504,6 +504,20 @@ public: cUnbufferedFile *NextFile(void); }; +class cDoneRecordings { +private: + cString fileName; + cStringList doneRecordings; + void Add(const char *Title); +public: + bool Load(const char *FileName); + bool Save(void) const; + void Append(const char *Title); + bool Contains(const char *Title) const; + }; + +extern cDoneRecordings DoneRecordingsPattern; + cString IndexToHMSF(int Index, bool WithFrame = false, double FramesPerSecond = DEFAULTFRAMESPERSECOND); // Converts the given index to a string, optionally containing the frame number. int HMSFToIndex(const char *HMSF, double FramesPerSecond = DEFAULTFRAMESPERSECOND); -- cgit v1.2.3