int
OptionsCont::getInt(const std::string &name) const throw(InvalidArgument) {
    Option *o = getSecure(name);
    return o->getInt();
}
Beispiel #2
0
int
OptionsCont::getInt(const std::string& name) const {
    Option* o = getSecure(name);
    return o->getInt();
}