X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fstrings%2Ffmt.h;h=ee84911bcec06fcd0fc34402ef8975133235b3ce;hp=baf2a76f9b96ae51e7cf7d845193f39fcbc8c9a5;hb=71be32fe7248a7d2df7dea4e18c5ebd30fd73d4b;hpb=7ad451f4b5e4352d15165f472a00cf33957a1687 diff --git a/source/strings/fmt.h b/source/strings/fmt.h index baf2a76..ee84911 100644 --- a/source/strings/fmt.h +++ b/source/strings/fmt.h @@ -103,6 +103,7 @@ public: Fmt &hex() { base = HEX; return *this; } Fmt &oct() { base = OCT; return *this; } Fmt &bin() { base = BIN; return *this; } + Fmt &autobase() { base = AUTOBASE; return *this; } Fmt &uppercase(bool u = true) { ucase = u; return *this; } Fmt &numeric() { type = NUM; return *this; } Fmt &character() { type = CHAR; return *this; }