当前位置: 首页>>代码示例>>C++>>正文


C++ GetValueHelper函数代码示例

本文整理汇总了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)
		;
}
开发者ID:BreakoutCoin,项目名称:Breakout-Chain-Client,代码行数:7,代码来源:rsa.cpp

示例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)
		;
}
开发者ID:ste93,项目名称:thesis_code,代码行数:8,代码来源:rabin.cpp

示例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)
		;
}
开发者ID:007pig,项目名称:BitcoinArmory,代码行数:8,代码来源:xtrcrypt.cpp

示例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");
};
开发者ID:Bootz,项目名称:SkyFireEMU_430,代码行数:10,代码来源:Config.cpp

示例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;
}
开发者ID:BoThay,项目名称:ArkCORE,代码行数:13,代码来源:Config.cpp

示例6: GetValueHelper

std::string FileConfig::GetStringDefault(const char* name, const char* def)
{
    ACE_TString val;
    return GetValueHelper(mConf, name, val) ? val.c_str() : def;
}
开发者ID:kuramajssken001,项目名称:mangos-tbc,代码行数:5,代码来源:Config.cpp

示例7: GetIntDefault

int GetIntDefault(const char* name, int def)
{
    ACE_TString val;
    return GetValueHelper(name, val) ? atoi(val.c_str()) : def;
};
开发者ID:Bootz,项目名称:SkyFireEMU_430,代码行数:5,代码来源:Config.cpp

示例8: GetStringDefault

std::string GetStringDefault(const char* name, const std::string &def)
{
    ACE_TString val;
    return GetValueHelper(name, val) ? val.c_str() : def;
};
开发者ID:Bootz,项目名称:SkyFireEMU_430,代码行数:5,代码来源:Config.cpp


注:本文中的GetValueHelper函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。