summaryrefslogtreecommitdiff
path: root/timerdone.h
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
committerJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
commite8a0e569152c50d6084f252d12854b8fd4e74466 (patch)
tree5a90ef7ea08ff2096df157ca109c5268cdc04903 /timerdone.h
parent9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff)
downloadvdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz
vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2
unified indentation
Diffstat (limited to 'timerdone.h')
-rw-r--r--timerdone.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/timerdone.h b/timerdone.h
index e3c4719..3305049 100644
--- a/timerdone.h
+++ b/timerdone.h
@@ -30,7 +30,8 @@ The project's page is at http://winni.vdr-developer.org/epgsearch
using std::string;
// --- cTimerDone --------------------------------------------------------
-class cTimerDone : public cListObject {
+class cTimerDone : public cListObject
+{
public:
time_t start; // Start time of the timer
time_t stop; // Stop time of the timer
@@ -50,8 +51,9 @@ public:
const cEvent* GetEvent() const;
};
-class cTimersDone : public cConfig<cTimerDone>, public cMutex {
- public:
+class cTimersDone : public cConfig<cTimerDone>, public cMutex
+{
+public:
cTimerDone* InList(const time_t Start, const time_t Stop, const cEvent* pEvent, const int SearchID);
void Update(const time_t Start, const time_t Stop, const cEvent* pEvent, const int SearchID, cTimerDone* timerdone);
void ClearOutdated(void);