本文整理汇总了C++中po::options_description::options方法的典型用法代码示例。如果您正苦于以下问题:C++ options_description::options方法的具体用法?C++ options_description::options怎么用?C++ options_description::options使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类po::options_description
的用法示例。
在下文中一共展示了options_description::options方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: register_options
void runner::register_options(const po::options_description& options)
{
assert(m_impl);
const auto& opt = options.options();
for (const auto& o: opt)
m_impl->m_options_description.add(o);
}
示例2: getParameterDescription
string getParameterDescription(po::options_description& options, const po::variables_map& vm) {
std::stringstream stream;
std::vector<boost::shared_ptr<po::option_description> > optionsVec = options.options();
for (unsigned int i=0; i<optionsVec.size(); ++i) {
boost::any value = vm[optionsVec[i]->long_name()].value();
stream << optionsVec[i]->long_name() << " = ";
if (value.type() == typeid(bool))
stream << boost::any_cast<bool>(value) << " (bool)" <<std::endl;
else if (value.type() == typeid(int))
stream << boost::any_cast<int>(value) << " (int)" << std::endl;
else if (value.type() == typeid(unsigned int))
stream << boost::any_cast<unsigned int>(value) << " (unsigned int)" << std::endl;
else if (value.type() == typeid(float))
stream << boost::any_cast<float>(value) << " (float)" << std::endl;
else if (value.type() == typeid(std::string))
stream << boost::any_cast<std::string>(value) << " (std::string)" << std::endl;
else
std::cerr << "the type of the option " << optionsVec[i]->long_name() << " (" << i << ") is not int, float or string." << std::endl;
}
return stream.str();
}