summaryrefslogtreecommitdiff
path: root/cli/options.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-06-15Add support for specifying output stream type (--stream-type)Boris Kolpackov1-0/+12
2012-05-11Add support for specifying multiple classes with --class optionBoris Kolpackov1-2/+2
2012-05-11Add support for -I optionBoris Kolpackov1-0/+13
Now quote-included ("") option files are searched for relative to the including file while bracket-included (<>) ones are search in the directories specified with -I.
2012-05-10Implement option class inheritanceBoris Kolpackov1-24/+114
For now multiple, non-virtual inheritance is supported. An option class can now also be declared abstract using the class c = 0 {...}; syntax. New option, --exclude-base, controls whether base class information is present in usage and documentation.
2011-01-04Cosmetic changesBoris Kolpackov1-1/+3
2010-11-19Add option description that can be examined at runtime.Boris Kolpackov1-0/+10
New option: --generate-description.
2010-11-09Add support for suppressing documentation for undocumented optionsBoris Kolpackov1-32/+67
2010-09-14Implement the --cli-namespace optionBoris Kolpackov1-57/+44
2010-06-04Add support for single quotes in option filesBoris Kolpackov1-2/+3
2010-06-02Update description of the --options-file optionBoris Kolpackov1-2/+33
2010-06-02Implement generation of specifier functions (--generate-specifier)Boris Kolpackov1-0/+10
These functions determine whether the option was specified on the command line. New test: specifier.
2009-12-13Mark 'stdout' as a reserved nameBoris Kolpackov1-6/+6
On some platforms (e.g., Windows/VC++ 8.0) stdout is a macro.
2009-12-10Allows additional options to be provided in files (--options-file)Boris Kolpackov1-5/+195
Implemented using the new argv_file_scanner scanner implementation.
2009-12-10Scanner-based parsing with support for element erasingBoris Kolpackov1-10/+74
Also implement argv_file_scanner which provides support for reading command line arguments from the argv array as well as files specified with command line options. New examples: file. New tests: ctor, erase, file.
2009-11-28Use a scanner interface instead of argc/argvBoris Kolpackov1-68/+125
This will allow supporting other sources of options, for example, an option file.
2009-11-22Implement option value modifiers generationBoris Kolpackov1-0/+9
2009-11-17Complete the implementation of the option documentationBoris Kolpackov1-21/+86
Add the man page generator. Port CLI usage, HTML documentation and the man page to the auto-generated version. Update examples and documentation.
2009-11-08Implement HTML pages generationBoris Kolpackov1-0/+41
2009-11-08Implement usage generationBoris Kolpackov1-19/+75
Also migrate the CLI compiler usage handling to the auto-generated version.
2009-10-11Add usage informationBoris Kolpackov1-6/+6
2009-10-04Move runtime inline function to inline fileBoris Kolpackov1-1/+1
2009-10-04Add --option-{prefix,separator} optionsBoris Kolpackov1-0/+26
2009-10-04Add support for option name aliases and string literalsBoris Kolpackov1-0/+2
2009-10-04Add --reserved-name optionBoris Kolpackov1-4/+69
2009-10-04Add options for various include settingsBoris Kolpackov1-4/+22
--include-with-brackets --include-prefix --guard-prefix
2009-10-04Add --{hxx,ixx,cxx}-suffix optionsBoris Kolpackov1-6/+24
2009-10-04Add --suppress-inline optionBoris Kolpackov1-25/+10
2009-09-27Add option file for the CLI compiler itselfBoris Kolpackov1-0/+328