Botan
1.11.15
|
#include <algo_registry.h>
Public Member Functions | |
Add (const std::string &basename, maker_fn fn, const std::string &provider, byte pref) | |
Add (bool cond, const std::string &basename, maker_fn fn, const std::string &provider, byte pref) |
Definition at line 64 of file algo_registry.h.
Botan::Algo_Registry< T >::Add::Add | ( | const std::string & | basename, |
maker_fn | fn, | ||
const std::string & | provider, | ||
byte | pref | ||
) | [inline] |
Definition at line 67 of file algo_registry.h.
References Botan::Algo_Registry< T >::global_registry().
{ Algo_Registry<T>::global_registry().add(basename, provider, fn, pref); }
Botan::Algo_Registry< T >::Add::Add | ( | bool | cond, |
const std::string & | basename, | ||
maker_fn | fn, | ||
const std::string & | provider, | ||
byte | pref | ||
) | [inline] |
Definition at line 72 of file algo_registry.h.
References Botan::Algo_Registry< T >::global_registry().
{ if(cond) Algo_Registry<T>::global_registry().add(basename, provider, fn, pref); }