diff -r 09ee878d7214 -r 7dbfdd61812c tool/Command.cpp --- a/tool/Command.cpp Thu Jul 24 13:29:13 2008 +0000 +++ b/tool/Command.cpp Thu Jul 24 14:56:57 2008 +0000 @@ -53,6 +53,19 @@ /*****************************************************************************/ +string Command::numericInfo() +{ + stringstream str; + + str << "Numerical values can be specified either with decimal (no" << endl + << "prefix), octal (prefix '0') or hexadecimal (prefix '0x') base." + << endl; + + return str.str(); +} + +/*****************************************************************************/ + void Command::throwInvalidUsageException(const stringstream &s) { throw InvalidUsageException(s); @@ -65,17 +78,4 @@ throw CommandException(s); } -/*****************************************************************************/ - -string Command::numericInfo() -{ - stringstream str; - - str << "Numerical values can be specified either with decimal (no" << endl - << "prefix), octal (prefix '0') or hexadecimal (prefix '0x') base." - << endl; - - return str.str(); -} - /****************************************************************************/