1 | /* |
---|
2 | * Copyright (c) 2005, Eric Crahen |
---|
3 | * |
---|
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
5 | * of this software and associated documentation files (the "Software"), to deal |
---|
6 | * in the Software without restriction, including without limitation the rights |
---|
7 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
8 | * copies of the Software, and to permit persons to whom the Software is furnished |
---|
9 | * to do so, subject to the following conditions: |
---|
10 | * |
---|
11 | * The above copyright notice and this permission notice shall be included in all |
---|
12 | * copies or substantial portions of the Software. |
---|
13 | * |
---|
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
17 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
---|
18 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
---|
19 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
---|
20 | * |
---|
21 | */ |
---|
22 | |
---|
23 | #ifndef __ZTLIBRARY_H__ |
---|
24 | #define __ZTLIBRARY_H__ |
---|
25 | |
---|
26 | |
---|
27 | #include "zthread/Barrier.h" |
---|
28 | #include "zthread/BiasedReadWriteLock.h" |
---|
29 | #include "zthread/BlockingQueue.h" |
---|
30 | #include "zthread/BoundedQueue.h" |
---|
31 | #include "zthread/Cancelable.h" |
---|
32 | #include "zthread/ClassLockable.h" |
---|
33 | #include "zthread/ConcurrentExecutor.h" |
---|
34 | #include "zthread/Condition.h" |
---|
35 | #include "zthread/Config.h" |
---|
36 | #include "zthread/CountedPtr.h" |
---|
37 | #include "zthread/CountingSemaphore.h" |
---|
38 | #include "zthread/Exceptions.h" |
---|
39 | #include "zthread/Executor.h" |
---|
40 | #include "zthread/FairReadWriteLock.h" |
---|
41 | #include "zthread/FastMutex.h" |
---|
42 | #include "zthread/FastRecursiveMutex.h" |
---|
43 | #include "zthread/Guard.h" |
---|
44 | #include "zthread/Lockable.h" |
---|
45 | #include "zthread/LockedQueue.h" |
---|
46 | #include "zthread/MonitoredQueue.h" |
---|
47 | #include "zthread/Mutex.h" |
---|
48 | #include "zthread/NonCopyable.h" |
---|
49 | #include "zthread/PoolExecutor.h" |
---|
50 | #include "zthread/Priority.h" |
---|
51 | #include "zthread/PriorityCondition.h" |
---|
52 | #include "zthread/PriorityInheritanceMutex.h" |
---|
53 | #include "zthread/PriorityMutex.h" |
---|
54 | #include "zthread/PrioritySemaphore.h" |
---|
55 | #include "zthread/Queue.h" |
---|
56 | #include "zthread/ReadWriteLock.h" |
---|
57 | #include "zthread/RecursiveMutex.h" |
---|
58 | #include "zthread/Runnable.h" |
---|
59 | #include "zthread/Semaphore.h" |
---|
60 | #include "zthread/Singleton.h" |
---|
61 | #include "zthread/SynchronousExecutor.h" |
---|
62 | #include "zthread/Thread.h" |
---|
63 | #include "zthread/ThreadLocal.h" |
---|
64 | #include "zthread/Time.h" |
---|
65 | #include "zthread/Waitable.h" |
---|
66 | |
---|
67 | #endif |
---|