diff options
Diffstat (limited to 'include/init.h')
-rw-r--r-- | include/init.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/init.h b/include/init.h new file mode 100644 index 000000000..6a3fcdbbd --- /dev/null +++ b/include/init.h @@ -0,0 +1,35 @@ +/************************************************* +* Library Initialization Header File * +* (C) 1999-2006 The Botan Project * +*************************************************/ + +#ifndef BOTAN_INIT_H__ +#define BOTAN_INIT_H__ + +#include <string> + +namespace Botan { + +namespace Init { + +/************************************************* +* Main Library Initialization/Shutdown Functions * +*************************************************/ +void initialize(const std::string& = ""); +void deinitialize(); + +} + +/************************************************* +* Library Initialization/Shutdown Object * +*************************************************/ +class LibraryInitializer + { + public: + LibraryInitializer(const std::string& = ""); + ~LibraryInitializer(); + }; + +} + +#endif |