diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2018-03-21 12:14:55 +0100 |
---|---|---|
committer | Johann Friedrichs <johann.friedrichs@web.de> | 2018-03-21 12:14:55 +0100 |
commit | e8a0e569152c50d6084f252d12854b8fd4e74466 (patch) | |
tree | 5a90ef7ea08ff2096df157ca109c5268cdc04903 /recstatus.h | |
parent | 9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff) | |
download | vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2 |
unified indentation
Diffstat (limited to 'recstatus.h')
-rw-r--r-- | recstatus.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/recstatus.h b/recstatus.h index dcc6fec..47d5b3a 100644 --- a/recstatus.h +++ b/recstatus.h @@ -29,17 +29,22 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "epgsearchtools.h" // --- cRecDoneTimerObj -------------------------------------------------------- -class cRecDoneTimerObj : public cTimerObj { +class cRecDoneTimerObj : public cTimerObj +{ public: int deviceNr; cRecDone* recDone; time_t lastBreak; public: cRecDoneTimerObj(const cTimer* Timer, int DeviceNr) : cTimerObj(Timer), deviceNr(DeviceNr), recDone(NULL), lastBreak(0) {} - ~cRecDoneTimerObj() { timer = NULL; recDone = NULL; } // do not delete anything! + ~cRecDoneTimerObj() { + timer = NULL; // do not delete anything! + recDone = NULL; + } }; -class cTimersRecording: public cList<cRecDoneTimerObj>, public cMutex { +class cTimersRecording: public cList<cRecDoneTimerObj>, public cMutex +{ }; extern cTimersRecording TimersRecording; @@ -48,7 +53,7 @@ class cRecStatusMonitor : public cStatus { protected: virtual void Recording(const cDevice *Device, const char *Name, const char*, bool On); - public: +public: cRecStatusMonitor(); int TimerRecDevice(const cTimer*); }; |