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 /recdone_thread.h | |
parent | 9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff) | |
download | vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2 |
unified indentation
Diffstat (limited to 'recdone_thread.h')
-rw-r--r-- | recdone_thread.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/recdone_thread.h b/recdone_thread.h index 43f5f3d..848804d 100644 --- a/recdone_thread.h +++ b/recdone_thread.h @@ -29,18 +29,19 @@ Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html using std::vector; using std::string; -class cRecdoneThread: public cThread { +class cRecdoneThread: public cThread +{ private: vector<string>m_fnames; public: - virtual void Action(void); - cRecdoneThread(void); - virtual ~cRecdoneThread(); - void SetFilename(const char *FileName) { - m_fnames.push_back(FileName); - } - int RecLengthInSecs(const cRecording *pRecording); - bool IsPesRecording(const cRecording *pRecording); + virtual void Action(void); + cRecdoneThread(void); + virtual ~cRecdoneThread(); + void SetFilename(const char *FileName) { + m_fnames.push_back(FileName); + } + int RecLengthInSecs(const cRecording *pRecording); + bool IsPesRecording(const cRecording *pRecording); }; #endif |