本文整理汇总了C++中ParametersMap::isTrue方法的典型用法代码示例。如果您正苦于以下问题:C++ ParametersMap::isTrue方法的具体用法?C++ ParametersMap::isTrue怎么用?C++ ParametersMap::isTrue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ParametersMap
的用法示例。
在下文中一共展示了ParametersMap::isTrue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: _setFromParametersMap
void OrService::_setFromParametersMap(const ParametersMap& map)
{
_left = map.isTrue(PARAMETER_LEFT);
_right = map.isTrue(PARAMETER_RIGHT);
}
示例2: _setFromParametersMap
void ImportFunction::_setFromParametersMap(const ParametersMap& map)
{
// Import
RegistryKeyType importId(map.get<RegistryKeyType>(PARAMETER_IMPORT_ID));
try
{
boost::shared_ptr<const Import> import(ImportTableSync::Get(importId, *_env));
if(!import->get<DataSource>())
{
throw RequestException("The id system of the specified import is not defined.");
}
// Log path
bool outputLogs(map.getDefault<bool>(PARAMETER_OUTPUT_LOGS, false));
// Min log force
ImportLogLevel minLogLevel(import->get<MinLogLevel>());
if(map.isDefined(PARAMETER_MIN_LOG_LEVEL))
{
minLogLevel = static_cast<ImportLogLevel>(map.get<int>(PARAMETER_MIN_LOG_LEVEL));
}
// Log path force
string logPath(import->get<LogPath>());
if(map.isDefined(PARAMETER_LOG_PATH))
{
logPath = map.get<string>(PARAMETER_LOG_PATH);
}
// Logger generation
if(outputLogs)
{
// Importer generation
_importer = import->getImporter(
*_env,
minLogLevel,
logPath,
_output,
_result
);
}
else
{
// Importer generation
_importer = import->getImporter(
*_env,
minLogLevel,
logPath,
optional<ostream&>(),
_result
);
}
_importer->setFromParametersMap(map, true);
_doImport = map.isTrue(PARAMETER_DO_IMPORT);
_importDone = _importer->beforeParsing();
_importDone &= _importer->parseFiles();
_importDone &=_importer->afterParsing();
}
catch(ObjectNotFoundException<DataSource> e)
{
throw RequestException("Datasource not found");
}
catch(Exception e)
{
throw RequestException("Load failed : " + e.getMessage());
}
}
示例3: _setFromParametersMap
void AndFunction::_setFromParametersMap(const ParametersMap& map)
{
_left = map.isTrue(PARAMETER_LEFT);
_right = map.isTrue(PARAMETER_RIGHT);
}