diff options
author | lloyd <[email protected]> | 2008-11-10 22:16:13 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-10 22:16:13 +0000 |
commit | 675aa7bcc476d8445b6eb2bc3c6b0a2f3ce12958 (patch) | |
tree | cdcc9c87a1692d62c6b6559aac8254acfe4dfa18 /src/libstate/init.h | |
parent | 88b635f50937f926097b76c7834baead3b936dfe (diff) |
Remove Modules class from the initializer code - it just wasn't that useful
as an abstraction. Check #ifdef's for engines and such directly in libstate.cpp
Diffstat (limited to 'src/libstate/init.h')
-rw-r--r-- | src/libstate/init.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstate/init.h b/src/libstate/init.h index 7963a6fd8..e3eec3ce9 100644 --- a/src/libstate/init.h +++ b/src/libstate/init.h @@ -82,7 +82,7 @@ class BOTAN_DLL InitializerOptions }; /** -* This class represents the Library Initialization/Shutdown Object. It has to +* This class represents the Library Initialization/Shutdown Object. It has to * exceed the lifetime of any Botan object used in an application. */ class BOTAN_DLL LibraryInitializer @@ -90,7 +90,6 @@ class BOTAN_DLL LibraryInitializer public: static void initialize(const std::string& = ""); static void initialize(const InitializerOptions&); - static void initialize(const InitializerOptions&, class Modules&); static void deinitialize(); /** |