summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/mux_noop.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/build/botan/mux_noop.h')
-rw-r--r--old/botan/build/botan/mux_noop.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/old/botan/build/botan/mux_noop.h b/old/botan/build/botan/mux_noop.h
new file mode 100644
index 0000000..94201cb
--- /dev/null
+++ b/old/botan/build/botan/mux_noop.h
@@ -0,0 +1,26 @@
+/*
+* No-Op Mutex Factory
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#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