Implemented drive_no for command-line tool; binary base name is now a

parameter of the helpString method.
This commit is contained in:
Florian Pose
2010-10-25 10:12:26 +02:00
parent a7cdeeec13
commit 18f63a581d
55 changed files with 156 additions and 96 deletions
+2 -2
View File
@@ -45,11 +45,11 @@ CommandDebug::CommandDebug():
/*****************************************************************************/
string CommandDebug::helpString() const
string CommandDebug::helpString(const string &binaryBaseName) const
{
stringstream str;
str << getName() << " <LEVEL>" << endl
str << binaryBaseName << " " << getName() << " <LEVEL>" << endl
<< endl
<< getBriefDescription() << endl
<< endl