我用来boost::program_options
为我的应用程序提供命令行解析接口。我想配置它来解析选项,
using namespace boost::program_options;
options_description desc("Allowed options");
desc.add_options()
("help,h", "produce help message")
("version,v", "print the version number")
("include-path,I", value< vector<string> >(), "include path")
("input-file,i", value<string>(), "input file");
positional_options_description p;
p.add("input-file", 1);
variables_map vm;
parsed_options parsed = command_line_parser(ac, av).
options(desc).positional(p).run();
store(parsed, vm);
notify(vm);
我想对其进行配置,以便在最后一次切换之后的每个标记都以向量的形式返回。我已经尝试collect_unrecognized
按照 Boost 文档中给出的示例使用,但我遇到了一些问题,因为我也在使用输入文件的位置参数。
基本上我想这样做。如果我有:
./program -i "inputfile.abc" argument1 argument2 argument3
我希望它存储inputfile.abc
在input-file
值中并返回 a vector<string>
of argument1
,argument2
并argument3
作为未经请求的参数。
但是,我也希望能够进行位置论证,以便
./program "inputfile.abc" argument1 argument2 argument3
会给我同样的结果。
如果已经有人问过这个问题,我很抱歉,感谢您的帮助。