mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
11 lines
237 B
C
11 lines
237 B
C
argList::addArgument("tool");
|
|
const wordList opts(helpType::dictionaryConstructorTablePtr_->sortedToc());
|
|
|
|
string note = "Valid <tool> options include:";
|
|
forAll(opts, i)
|
|
{
|
|
note = note + ' ' + opts[i];
|
|
}
|
|
|
|
argList::notes.append(note);
|