Commit 70c87b69 authored by Julien Michel's avatar Julien Michel
Browse files

ENH: progress and help appear at the end of parameters list

No related merge requests found
Showing with 6 additions and 6 deletions
+6 -6
......@@ -668,12 +668,6 @@ void CommandLineLauncher::DisplayHelp(bool longHelp)
for(unsigned int i=0; i<maxKeySize-std::string("progress").size(); i++)
bigKey.append(" ");
std::cerr << " -"<<bigKey<<" <boolean> Report progress " << std::endl;
bigKey = "help";
for(unsigned int i=0; i<maxKeySize-std::string("help").size(); i++)
bigKey.append(" ");
std::cerr << " -"<<bigKey<<" <string list> Display long help (empty list), or help for given parameters keys" << std::endl;
for (unsigned int i = 0; i < nbOfParam; i++)
{
Parameter::Pointer param = m_Application->GetParameterByKey(appKeyList[i]);
......@@ -683,6 +677,12 @@ void CommandLineLauncher::DisplayHelp(bool longHelp)
}
}
std::cerr << " -"<<bigKey<<" <boolean> Report progress " << std::endl;
bigKey = "help";
for(unsigned int i=0; i<maxKeySize-std::string("help").size(); i++)
bigKey.append(" ");
std::cerr << " -"<<bigKey<<" <string list> Display long help (empty list), or help for given parameters keys" << std::endl;
std::cerr<<std::endl;
//std::string cl(m_Application->GetCLExample());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment