aboutsummaryrefslogtreecommitdiffstats
path: root/src/mutex/noop_mutex/mux_noop.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mutex/noop_mutex/mux_noop.h')
-rw-r--r--src/mutex/noop_mutex/mux_noop.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mutex/noop_mutex/mux_noop.h b/src/mutex/noop_mutex/mux_noop.h
new file mode 100644
index 000000000..a5b802cc0
--- /dev/null
+++ b/src/mutex/noop_mutex/mux_noop.h
@@ -0,0 +1,24 @@
+/*************************************************
+* No-Op Mutex Factory Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_NOOP_MUTEX_FACTORY_H__
+#define BOTAN_NOOP_MUTEX_FACTORY_H__
+
+#include <botan/mutex.h>
+
+namespace Botan {
+
+/*************************************************
+* No-Op Mutex Factory *
+*************************************************/
+class BOTAN_DLL Noop_Mutex_Factory : public Mutex_Factory
+ {
+ public:
+ Mutex* make();
+ };
+
+}
+
+#endif