summaryrefslogtreecommitdiff
path: root/recdone_thread.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 /recdone_thread.h
parent9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff)
downloadvdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz
vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2
unified indentation
Diffstat (limited to 'recdone_thread.h')
-rw-r--r--recdone_thread.h19
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