diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-04-20 20:41:05 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-04-20 20:41:05 +0000 |
commit | 5640702be731df825d94487c5397f39ce1f8ca00 (patch) | |
tree | b1f8391b165a88390c47fc361c8482b6f3634cb7 /cpp/test/IceUtil/thread/CountDownLatchTest.h | |
parent | more facet fixes (diff) | |
download | ice-5640702be731df825d94487c5397f39ce1f8ca00.tar.bz2 ice-5640702be731df825d94487c5397f39ce1f8ca00.tar.xz ice-5640702be731df825d94487c5397f39ce1f8ca00.zip |
Added CountDownLatch test
Diffstat (limited to 'cpp/test/IceUtil/thread/CountDownLatchTest.h')
-rw-r--r-- | cpp/test/IceUtil/thread/CountDownLatchTest.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/CountDownLatchTest.h b/cpp/test/IceUtil/thread/CountDownLatchTest.h new file mode 100644 index 00000000000..27f1f0a2f29 --- /dev/null +++ b/cpp/test/IceUtil/thread/CountDownLatchTest.h @@ -0,0 +1,31 @@ +// ********************************************************************** +// +// Copyright (c) 2003 +// ZeroC, Inc. +// Billerica, MA, USA +// +// All Rights Reserved. +// +// Ice is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License version 2 as published by +// the Free Software Foundation. +// +// ********************************************************************** + +#ifndef COUNT_DOWN_LATCH_TEST_H +#define COUNT_DOWN_LATCH_TEST_H + +#include <TestBase.h> + +class CountDownLatchTest : public TestBase +{ +public: + + CountDownLatchTest(); + +private: + + virtual void run(); +}; + +#endif |