本文整理汇总了C++中GetValueHelper函数的典型用法代码示例。如果您正苦于以下问题:C++ GetValueHelper函数的具体用法?C++ GetValueHelper怎么用?C++ GetValueHelper使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了GetValueHelper函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetValueHelper
bool RSAFunction::GetVoidValue(const char *name, const std::type_info &valueType, void *pValue) const
{
return GetValueHelper(this, name, valueType, pValue).Assignable()
CRYPTOPP_GET_FUNCTION_ENTRY(Modulus)
CRYPTOPP_GET_FUNCTION_ENTRY(PublicExponent)
;
}
示例2: GetValueHelper
bool RabinFunction::GetVoidValue(const char *name, const std::type_info &valueType, void *pValue) const
{
return GetValueHelper(this, name, valueType, pValue).Assignable()
CRYPTOPP_GET_FUNCTION_ENTRY(Modulus)
CRYPTOPP_GET_FUNCTION_ENTRY(QuadraticResidueModPrime1)
CRYPTOPP_GET_FUNCTION_ENTRY(QuadraticResidueModPrime2)
;
}
示例3: GetValueHelper
bool XTR_DH::GetVoidValue(const char *name, const std::type_info &valueType, void *pValue) const
{
return GetValueHelper(this, name, valueType, pValue).Assignable()
CRYPTOPP_GET_FUNCTION_ENTRY(Modulus)
CRYPTOPP_GET_FUNCTION_ENTRY(SubgroupOrder)
CRYPTOPP_GET_FUNCTION_ENTRY(SubgroupGenerator)
;
}
示例4: GetBoolDefault
bool GetBoolDefault(const char* name, bool def)
{
ACE_TString val;
if (!GetValueHelper(name, val))
return def;
return (val == "true" || val == "TRUE" || val == "yes" || val == "YES" ||
val == "1");
};
示例5: GetBoolDefault
bool Config::GetBoolDefault(const char * name, const bool def) {
ACE_TString val;
if (!GetValueHelper(mConf, name, val))
return def;
const char* str = val.c_str();
if (strcmp(str, "true") == 0 || strcmp(str, "TRUE") == 0
|| strcmp(str, "yes") == 0 || strcmp(str, "YES") == 0
|| strcmp(str, "1") == 0)
return true;
else
return false;
}
示例6: GetValueHelper
std::string FileConfig::GetStringDefault(const char* name, const char* def)
{
ACE_TString val;
return GetValueHelper(mConf, name, val) ? val.c_str() : def;
}
示例7: GetIntDefault
int GetIntDefault(const char* name, int def)
{
ACE_TString val;
return GetValueHelper(name, val) ? atoi(val.c_str()) : def;
};
示例8: GetStringDefault
std::string GetStringDefault(const char* name, const std::string &def)
{
ACE_TString val;
return GetValueHelper(name, val) ? val.c_str() : def;
};