classflag_value_option : public base_option<bool>;
Description
Flag options value. Set flag to true if option name is at arguments list
Example how to use: OdDAI::utils::argv_parser commandLineParser("some.exe"); bool disableText = false; commandLineParser.add_param(std::make_shared(disableText, "-textDisable", "disable text output."));