Botan  1.10.9
mux_pthr.h
Go to the documentation of this file.
1 /*
2 * Pthread Mutex
3 * (C) 1999-2007 Jack Lloyd
4 *
5 * Distributed under the terms of the Botan license
6 */
7 
8 #ifndef BOTAN_MUTEX_PTHREAD_H__
9 #define BOTAN_MUTEX_PTHREAD_H__
10 
11 #include <botan/internal/mutex.h>
12 
13 namespace Botan {
14 
15 /**
16 * Pthread Mutex Factory
17 */
19  {
20  public:
21  Mutex* make();
22  };
23 
24 }
25 
26 #endif