summaryrefslogtreecommitdiff
path: root/src/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Thread.h')
-rw-r--r--src/Thread.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Thread.h b/src/Thread.h
index 55ebf1c..8ca2b76 100644
--- a/src/Thread.h
+++ b/src/Thread.h
@@ -9,13 +9,25 @@
* Douglas M. Pase - initial API and implementation *
*******************************************************************************/
+//
+// Configuration
+//
+
+// Include guard
#if !defined(Thread_h)
#define Thread_h
+// System includes
#include <pthread.h>
+// Local includes
#include "Lock.h"
+
+//
+// Class definition
+//
+
class Thread {
public:
Thread();