Function
addSection
Add section to ToolDoc object.
Begins a new section of ArgParseOption the help output of
the ArgumentParser.
Include Headers
seqan/arg_parse.h, seqan/arg_parse/tool_doc.h
Parameters
Tool documentation object to add section to. Types: ToolDoc | |
Section title. Types: CharString | |
The ArgumentParser object. Types: ArgumentParser | |
A section header that will be added to the help output. Types: CharString |
Return Values
Member of
Examples
[...] // init parser
addSection(parser, "In-/Output-Options");
addOption("i", ... );
addOption("o", ... );
addSection(parser, "Other Options");
addOption("x", ... );
SeqAn - Sequence Analysis Library - www.seqan.de