本文整理汇总了C++中Option::isWriteable方法的典型用法代码示例。如果您正苦于以下问题:C++ Option::isWriteable方法的具体用法?C++ Option::isWriteable怎么用?C++ Option::isWriteable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Option
的用法示例。
在下文中一共展示了Option::isWriteable方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: throw
bool
OptionsCont::set(const std::string &name, const std::string &value) throw(InvalidArgument) {
Option *o = getSecure(name);
if (!o->isWriteable()) {
reportDoubleSetting(name);
return false;
}
try {
if (!o->set(value)) {
return false;
}
} catch (InvalidArgument &e) {
MsgHandler::getErrorInstance()->inform("While processing option '" + name + "':\n " + e.what());
return false;
}
return true;
}
示例2: getSecure
bool
OptionsCont::set(const std::string& name, const std::string& value) {
Option* o = getSecure(name);
if (!o->isWriteable()) {
reportDoubleSetting(name);
return false;
}
try {
if (!o->set(value)) {
return false;
}
} catch (ProcessError& e) {
WRITE_ERROR("While processing option '" + name + "':\n " + e.what());
return false;
}
return true;
}
示例3: InvalidArgument
bool
OptionsCont::set(const std::string &name, bool value) throw(InvalidArgument) {
Option *o = getSecure(name);
if (!o->isBool()) {
throw InvalidArgument("The option '" + name + "' is not a boolean attribute and requires an argument.");
}
if (!o->isWriteable()) {
reportDoubleSetting(name);
return false;
}
try {
if (!o->set(value)) {
return false;
}
} catch (InvalidArgument &e) {
MsgHandler::getErrorInstance()->inform("While processing option '" + name + "':\n " + e.what());
return false;
}
return true;
}