Nuacht

A C++ header that implements a python-like optparse This is an easy-to-implement command-line option for C++ programs. Take as an example the following code, where command-line arguments will set the ...
BaseConfig uses "optparse" which is deprecated since Python 3.2 (in 2011). Use argparse instead. Also: Permit multiple input files, not just one.
From O'Reilly's Python in a Nutshell, I found the following description: The optparse module offers rich, powerful ways to parse the command-line options that the user passed upon starting your ...