文件名称:args:C ++ 14的简单且类型安全的命令行参数解析器
文件大小:16KB
文件格式:ZIP
更新时间:2024-06-04 19:24:42
cplusplus cpp argument-parser cpp14 cpp11
精氨酸 C ++ 14的简单和类型安全的命令行解析。 快速开始 只需为类提供要由命令行参数填充的字段即可: struct hello { static const char * help () { return " Simple program that greets NAME for a total of COUNT times. " ; } int count; std::string name; hello () : count( 1 ) {} template < class> void parse (F f) { f (count, " --count " , " -C " , args::help ( " Number of greetings. " ));
【文件预览】:
args-master
----requirements.txt(21B)
----CMakeLists.txt(1KB)
----examples()
--------basic.cpp(613B)
--------groups.cpp(646B)
----.travis.yml(9KB)
----test()
--------basic.cpp(4KB)
--------count.cpp(3KB)
--------required.cpp(887B)
--------multi.cpp(1KB)
--------name.cpp(855B)
--------help.cpp(796B)
--------group_basic.cpp(452B)
--------callback.cpp(3KB)
--------set.cpp(1KB)
--------group_auto.cpp(749B)
--------test.hpp(56B)
----README.md(2KB)
----include()
--------args.hpp(18KB)