summaryrefslogtreecommitdiff
path: root/include/threadengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/threadengine.h')
-rw-r--r--include/threadengine.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/threadengine.h b/include/threadengine.h
index 7b7b88c9f..79e545166 100644
--- a/include/threadengine.h
+++ b/include/threadengine.h
@@ -14,7 +14,9 @@
#include "sockets.h"
#include "extensible.h"
-class CoreExport Thread : public Pipe, public Extensible
+class CoreExport Thread
+ : public Pipe
+ , public Extensible
{
private:
/* Set to true to tell the thread to finish and we are waiting for it */
@@ -88,7 +90,8 @@ public:
bool TryLock();
};
-class CoreExport Condition : public Mutex
+class CoreExport Condition
+ : public Mutex
{
private:
/* A condition */