Below is the file 'modules/mux_pthr/mux_pthr.h' from this revision. You can also download the file.
/************************************************* * Pthread Mutex Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_EXT_MUTEX_PTHREAD_H__ #define BOTAN_EXT_MUTEX_PTHREAD_H__ #include <botan/mutex.h> namespace Botan { /************************************************* * Pthread Mutex Factory * *************************************************/ class Pthread_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); }; } #endif