diff options
| author | Martin Dummer <martin.dummer@gmx.net> | 2012-07-01 23:10:05 +0200 |
|---|---|---|
| committer | Martin Dummer <martin.dummer@gmx.net> | 2012-07-01 23:10:05 +0200 |
| commit | 38501c4557eaf51c9b0896d969ae30023671f4d4 (patch) | |
| tree | 3c73d3f288e4079336b01c4ea0f6adc134869e1f /dataplaylist.h | |
| parent | 95a45ede4ab99e39c9fdf02aea58b46068208f89 (diff) | |
| download | vdr-plugin-playlist-38501c4557eaf51c9b0896d969ae30023671f4d4.tar.gz vdr-plugin-playlist-38501c4557eaf51c9b0896d969ae30023671f4d4.tar.bz2 | |
Changes for VDR >= 1.7.3 by Thomas Günther <tom@toms-cafe.de>
Diffstat (limited to 'dataplaylist.h')
| -rw-r--r-- | dataplaylist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dataplaylist.h b/dataplaylist.h index e5e32fe..1312791 100644 --- a/dataplaylist.h +++ b/dataplaylist.h @@ -43,6 +43,7 @@ private: time_t start; // copy from cRecording char *title; // copy from cRecording bool isedited; // copy from cRecording + bool isPesRecording; // copy from cRecording char *summary; // copy from cRecording int options[Option_max]; cPlaylistRecord *parent; @@ -66,6 +67,7 @@ public: char *Filename(void) { return filename; } bool IsNew(void) { return isnew; } bool IsEdited(void) { return isedited; } + bool IsPesRecording(void) const { return isPesRecording; } bool IsDir(void) { return isdir; } bool IsDel(void) { return isdel; } bool IsDirOrDel(void) { return isdir || isdel; } |
