aboutsummaryrefslogtreecommitdiffstats
path: root/include/allocate.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /include/allocate.h
Initial checkin1.5.6
Diffstat (limited to 'include/allocate.h')
-rw-r--r--include/allocate.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/allocate.h b/include/allocate.h
new file mode 100644
index 000000000..a3f59cf1b
--- /dev/null
+++ b/include/allocate.h
@@ -0,0 +1,36 @@
+/*************************************************
+* Allocator Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_ALLOCATOR_H__
+#define BOTAN_ALLOCATOR_H__
+
+#include <botan/types.h>
+#include <string>
+
+namespace Botan {
+
+/*************************************************
+* Allocator *
+*************************************************/
+class Allocator
+ {
+ public:
+ virtual void* allocate(u32bit) = 0;
+ virtual void deallocate(void*, u32bit) = 0;
+
+ virtual void init() {}
+ virtual void destroy() {}
+
+ virtual ~Allocator() {}
+ };
+
+/*************************************************
+* Get an allocator *
+*************************************************/
+Allocator* get_allocator(const std::string& = "");
+
+}
+
+#endif