Enhancement

- Added integer versions of leftJustify, rightJustify.
This commit is contained in:
Paul Beckingham 2011-04-29 01:01:08 -04:00
parent d0a91acf28
commit 937f2d9c8f
3 changed files with 31 additions and 1 deletions

View file

@ -66,7 +66,9 @@ std::string format (int);
std::string formatHex (int);
std::string format (float, int, int);
std::string format (double, int, int);
std::string leftJustify (const int, const int);
std::string leftJustify (const std::string&, const int);
std::string rightJustify (const int, const int);
std::string rightJustify (const std::string&, const int);
// UTF-8 aware.