addToolOption.H
Go to the documentation of this file.
1 argList::addArgument("tool");
2 
3 argList::addNote("Valid <tool> options include:");
4 for (const word& tool : helpType::dictionaryConstructorTablePtr_->sortedToc())
5 {
6  argList::addNote(" " + tool);
7 }
8 
9 argList::addNote
10 (
11  "\nNOTE the <tool> must actually appear *before* any options"
12 );