mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
add text wrapping to the argList::printUsage output
This commit is contained in:
@ -41,8 +41,18 @@ using namespace Foam;
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
argList::noParallel();
|
||||
argList::addBoolOption("new");
|
||||
argList::addBoolOption("old");
|
||||
argList::addBoolOption
|
||||
(
|
||||
"new",
|
||||
"output switches that are known from the libraries "
|
||||
"but that do not seem to be known in the current etc/controlDict"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"old",
|
||||
"output switches that appear to be unknown in "
|
||||
"the current etc/controlDict"
|
||||
);
|
||||
|
||||
argList args(argc, argv);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user