diff options
Diffstat (limited to 'include/allocate.h')
-rw-r--r-- | include/allocate.h | 36 |
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 |