Exemplo n.º 1
0
std::string const&
mack::options::option::get_default_value() const
{
  if (!has_default_value())
  {
    BOOST_THROW_EXCEPTION(no_value_error()
        << errinfo_option_flag(get_long_flag()));
  }
  else
  {
    return _default_value;
  }
}
Exemplo n.º 2
0
/// Returns the default value for the argument to the option.
///
/// \pre has_default_value() must be true.
///
/// \return The default value.
const std::string&
cmdline::base_option::default_value(void) const
{
    INV(has_default_value());
    return _default_value;;
}