template <class TValue>
classhardplace_value_option : public base_option<TValue>;
Description
Hard placed option. Should go on the defined place.
Example how to use: OdDAI::utils::argv_parser commandLineParser("some.exe"); OdString szTargetFileName; commandLineParser.add_param(std::make_shared>(szTargetFileName, "File name", "target filename"));
Example in args: some.exe "f:/path_to_some_file.txt" - [szTargetFileName == "f:/path_to_some_file.txt"]