Very simple command-line parser.  
More...
#include <algorithm>
#include <deque>
#include <initializer_list>
#include <iterator>
#include <map>
#include <sstream>
#include <vector>
|  | 
| using | FilesVector = std::vector< std::string > | 
|  | type of the list of elements on the command line that are not handled by options parsing 
 | 
|  | 
|  | 
| bool | parse (int ac, char *av[], const Descriptions &desc, VariablesMap &result, FilesVector *files=nullptr) | 
|  | Parse the command-line. 
 | 
|  | 
| std::ostream & | operator<< (std::ostream &os, const Descriptions &desc) | 
|  | Make Descriptions stream able. 
 | 
|  | 
Very simple command-line parser. 
- See Also
- Steinberg::CommandLine