diff options
Diffstat (limited to 'src/lib/base/init.cpp')
-rw-r--r-- | src/lib/base/init.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/base/init.cpp b/src/lib/base/init.cpp new file mode 100644 index 000000000..1befc34d2 --- /dev/null +++ b/src/lib/base/init.cpp @@ -0,0 +1,23 @@ +/* +* (C) 2015 Jack Lloyd +* +* Botan is released under the Simplified BSD License (see license.txt) +*/ + +#include <botan/init.h> + +namespace Botan { + +//static +void LibraryInitializer::initialize(const std::string&) + { + // none needed currently + } + +//static +void LibraryInitializer::deinitialize() + { + // none needed currently + } + +} |