diff options
Diffstat (limited to 'Attic/mutex/qt_mutex/mux_qt.h')
-rw-r--r-- | Attic/mutex/qt_mutex/mux_qt.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Attic/mutex/qt_mutex/mux_qt.h b/Attic/mutex/qt_mutex/mux_qt.h new file mode 100644 index 000000000..cb396b81d --- /dev/null +++ b/Attic/mutex/qt_mutex/mux_qt.h @@ -0,0 +1,27 @@ +/* +* Qt Mutex +* (C) 2004-2007 Justin Karneges +* 2004-2007 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ + +#ifndef BOTAN_MUTEX_QT_H__ +#define BOTAN_MUTEX_QT_H__ + +#include <botan/internal/mutex.h> + +namespace Botan { + +/* +* Qt Mutex +*/ +class Qt_Mutex_Factory : public Mutex_Factory + { + public: + Mutex* make(); + }; + +} + +#endif |