diff options
author | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-05-18 18:33:19 +0000 |
commit | a2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch) | |
tree | ad3d6c4fcc8dd0f403f8105598943616246fe172 /include/init.h |
Initial checkin1.5.6
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 |