aboutsummaryrefslogtreecommitdiff
path: root/dep/include/zthread/PriorityCondition.h
diff options
context:
space:
mode:
authorParadox <none@none>2009-02-09 08:16:34 -0500
committerParadox <none@none>2009-02-09 08:16:34 -0500
commitd230302b16474ff22a35243ffed6236ef4fc7fb9 (patch)
treee3679ad841a47b275756f2721f9aa24a3ee548a6 /dep/include/zthread/PriorityCondition.h
parentb0694d7e5e794b361fa178d55fefdb98cf47e9ca (diff)
Replace tabs with spaces in more files.
--HG-- branch : trunk
Diffstat (limited to 'dep/include/zthread/PriorityCondition.h')
-rw-r--r--dep/include/zthread/PriorityCondition.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/dep/include/zthread/PriorityCondition.h b/dep/include/zthread/PriorityCondition.h
index 1fd86c41c11..a85a000e941 100644
--- a/dep/include/zthread/PriorityCondition.h
+++ b/dep/include/zthread/PriorityCondition.h
@@ -28,7 +28,7 @@
#include "zthread/Waitable.h"
namespace ZThread {
-
+
class PriorityConditionImpl;
/**
@@ -49,9 +49,9 @@ namespace ZThread {
class ZTHREAD_API PriorityCondition : public Waitable, private NonCopyable {
PriorityConditionImpl* _impl;
-
+
public:
-
+
/**
* @see Condition::Condition(Lockable& l)
*/
@@ -61,7 +61,7 @@ namespace ZThread {
* @see Condition::~Condition()
*/
~PriorityCondition();
-
+
/**
* @see Condition::signal()
*/
@@ -81,9 +81,9 @@ namespace ZThread {
* @see Condition::wait(unsigned long timeout)
*/
virtual bool wait(unsigned long timeout);
-
+
};
-
+
} // namespace ZThread
#endif // __ZTPRIORITYCONDITION_H__