本文整理汇总了C++中OptionSet::parseFile方法的典型用法代码示例。如果您正苦于以下问题:C++ OptionSet::parseFile方法的具体用法?C++ OptionSet::parseFile怎么用?C++ OptionSet::parseFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OptionSet
的用法示例。
在下文中一共展示了OptionSet::parseFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ParseOptions
void ParseOptions(int argc, char** argv, const String& config_file_option) {
OptionSet* options = OptionSet::getOptions(SIRIKATA_OPTIONS_MODULE,NULL);
// Parse command line once to make sure we have the right config
// file. On this pass, use defaults so everything gets filled in.
options->parse(argc, argv, true);
// Get the config file name and parse it. Don't use defaults to
// avoid overwriting.
String fname = GetOptionValue<String>(config_file_option.c_str());
if (!fname.empty())
options->parseFile(fname, false, false);
// And parse the command line args a second time to overwrite any settings
// the config file may have overwritten. Don't use defaults to
// avoid overwriting.
options->parse(argc, argv, false);
setLogOutput();
}
示例2: ParseOptionsFile
void ParseOptionsFile(const String& fname, bool required) {
OptionSet* options = OptionSet::getOptions(SIRIKATA_OPTIONS_MODULE,NULL);
options->parseFile(fname, required);
setLogOutput();
}