Public Member Functions | |
CombinedNameValuePairs (const NameValuePairs &pairs1, const NameValuePairs &pairs2) | |
bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
to be implemented by derived classes, users should use one of the above functions instead | |
template<class T > | |
bool | GetThisObject (T &object) const |
get a copy of this object or a subobject of it | |
template<class T > | |
bool | GetThisPointer (T *&p) const |
get a pointer to this object, as a pointer to T | |
template<class T > | |
bool | GetValue (const char *name, T &value) const |
get a named value, returns true if the name exists | |
template<class T > | |
T | GetValueWithDefault (const char *name, T defaultValue) const |
get a named value, returns the default if the name doesn't exist | |
CRYPTOPP_DLL std::string | GetValueNames () const |
get a list of value names that can be retrieved | |
CRYPTOPP_DLL bool | GetIntValue (const char *name, int &value) const |
get a named value with type int | |
CRYPTOPP_DLL int | GetIntValueWithDefault (const char *name, int defaultValue) const |
get a named value with type int, with default | |
template<class T > | |
void | GetRequiredParameter (const char *className, const char *name, T &value) const |
CRYPTOPP_DLL void | GetRequiredIntParameter (const char *className, const char *name, int &value) const |
Static Public Member Functions | |
static CRYPTOPP_DLL void CRYPTOPP_API | ThrowIfTypeMismatch (const char *name, const std::type_info &stored, const std::type_info &retrieving) |
used by derived classes to check for type mismatch |
Definition at line 70 of file algparam.h.
CRYPTOPP_DLL bool NameValuePairs::GetIntValue | ( | const char * | name, | |
int & | value | |||
) | const [inline, inherited] |
get a named value with type int
used to ensure we don't accidentally try to get an unsigned int or some other type when we mean int (which is the most common case)
Definition at line 281 of file cryptlib.h.