diff options
Diffstat (limited to 'src/Lock.h')
-rw-r--r-- | src/Lock.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -9,11 +9,23 @@ * Douglas M. Pase - initial API and implementation * *******************************************************************************/ +// +// Configuration +// + + +// Include guard #if !defined(Lock_h) #define Lock_h +// System includes #include <pthread.h> + +// +// Class definition +// + class Lock { public: Lock(); |