We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The poster here describes a specific issue that should be easy to solve with a small modification to CLI11.
Planned solution: store a vector of pointers to Options as it parses. Then this could be solved like this:
for(Option* opt : app.parse_order()) { if(opt == arg1) \\ use value of arg1 }
The text was updated successfully, but these errors were encountered:
Fixes for #8, vars hidden and findPython used
2413653
Cmake cleanup (#21)
657b599
* Fixes for #8, vars hidden and findPython used * Adding compat with default python, better defaults
Successfully merging a pull request may close this issue.
The poster here describes a specific issue that should be easy to solve with a small modification to CLI11.
Planned solution: store a vector of pointers to Options as it parses. Then this could be solved like this:
The text was updated successfully, but these errors were encountered: