summaryrefslogtreecommitdiffstats
path: root/old/botan/src/mutex/qt_mutex/mux_qt.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/src/mutex/qt_mutex/mux_qt.h')
-rw-r--r--old/botan/src/mutex/qt_mutex/mux_qt.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/old/botan/src/mutex/qt_mutex/mux_qt.h b/old/botan/src/mutex/qt_mutex/mux_qt.h
new file mode 100644
index 0000000..5aed77f
--- /dev/null
+++ b/old/botan/src/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/mutex.h>
+
+namespace Botan {
+
+/*
+* Qt Mutex
+*/
+class BOTAN_DLL Qt_Mutex_Factory : public Mutex_Factory
+ {
+ public:
+ Mutex* make();
+ };
+
+}
+
+#endif