diff options
author | lloyd <[email protected]> | 2010-06-15 22:28:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 22:28:02 +0000 |
commit | 7dbef9e3e2efd2354bb4ca97fca0d720a8957db4 (patch) | |
tree | e6d563d6658a93ba5caffcf8975a065d98ca6c38 /src/algo_factory | |
parent | 416695f7363c4e93eaeaea23427a1fed3ad73cab (diff) |
More Doxygen fixes
Diffstat (limited to 'src/algo_factory')
-rw-r--r-- | src/algo_factory/algo_cache.h | 4 | ||||
-rw-r--r-- | src/algo_factory/algo_factory.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/algo_factory/algo_cache.h b/src/algo_factory/algo_cache.h index c9fbf5b26..13df8e752 100644 --- a/src/algo_factory/algo_cache.h +++ b/src/algo_factory/algo_cache.h @@ -50,6 +50,10 @@ class Algorithm_Cache */ std::vector<std::string> providers_of(const std::string& algo_name); + /** + * Constructor + * @param m a mutex to serialize internal access + */ Algorithm_Cache(Mutex* m) : mutex(m) {} ~Algorithm_Cache(); private: diff --git a/src/algo_factory/algo_factory.h b/src/algo_factory/algo_factory.h index e8a4914b5..3284942ad 100644 --- a/src/algo_factory/algo_factory.h +++ b/src/algo_factory/algo_factory.h @@ -155,8 +155,9 @@ class BOTAN_DLL Algorithm_Factory void add_mac(MessageAuthenticationCode* algo, const std::string& provider); - /* - * Deprecated + /** + * An iterator for the engines in this factory + * @deprecated */ class BOTAN_DLL Engine_Iterator { |