11 lines
242 B
C
11 lines
242 B
C
argList::validArgs.append("tool");
|
|
const wordList opts(helpType::dictionaryConstructorTablePtr_->sortedToc());
|
|
|
|
string note = "Valid <tool> options include:";
|
|
forAll(opts, i)
|
|
{
|
|
note = note + ' ' + opts[i];
|
|
}
|
|
|
|
argList::notes.append(note);
|