A class indicating that a parsed value can be automatically computed instead of specified.
More...
template<typename T, typename Label = AutoLabel::Auto>
class Options::Auto< T, Label >
A class indicating that a parsed value can be automatically computed instead of specified.
When an Auto<T> is parsed from an input file, the value may be specified either as the AutoLabel (defaults to "Auto") or as a value of type T. When this class is passed to the constructor of the class taking it as an option, it can be implicitly converted to a std::optional<U>, for any type U implicitly creatable from a T.
class ExampleClass {
public:
ExampleClass() = default;
struct AutoArg {
using type = Options::Auto<int>;
static type suggested_value() { return {}; }
"Integer that can be automatically chosen";
};
struct OptionalArg {
using type = Options::Auto<double, Options::AutoLabel::None>;
};
struct AllArg {
using type = Options::Auto<std::vector<int>, Options::AutoLabel::All>;
};
"A class that can automatically choose an argument";
using options = tmpl::list<AutoArg, OptionalArg, AllArg>;
explicit ExampleClass(std::optional<int> auto_arg,
std::optional<double> opt_arg,
std::optional<std::vector<int>> all_arg)
:
value(auto_arg ? *auto_arg : -12),
optional_value(opt_arg),
all_value(all_arg) {}
std::optional<double> optional_value{};
std::optional<std::vector<int>> all_value{};
};
"AutoArg: 7\n"
"OptionalArg: 10.\n"
"AllArg: [0, 1, 2]");
CHECK(example1.value == 7);
CHECK(example1.optional_value == 10.);
"AutoArg: Auto\n"
"OptionalArg: None\n"
"AllArg: [0, 1, 2]");
CHECK(example2.value == -12);
CHECK(example2.optional_value == std::nullopt);
"AutoArg: 7\n"
"OptionalArg: 10.\n"
"AllArg: All");
CHECK(example3.value == 7);
CHECK(example3.optional_value == 10.);
CHECK(example3.all_value == std::nullopt);