diff options
Diffstat (limited to '')
-rw-r--r-- | src/formatter.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/formatter.h b/src/formatter.h index 81e8db5..9f931ee 100644 --- a/src/formatter.h +++ b/src/formatter.h | |||
@@ -40,7 +40,7 @@ namespace Bu | |||
40 | bCaps( bCaps ) | 40 | bCaps( bCaps ) |
41 | { | 41 | { |
42 | } | 42 | } |
43 | Fmt( unsigned int uMinWidth, Alignment a=Right, | 43 | Fmt( unsigned int uMinWidth, Alignment a, |
44 | unsigned int uRadix=10, bool bPlus=false, bool bCaps=true, | 44 | unsigned int uRadix=10, bool bPlus=false, bool bCaps=true, |
45 | char cFill=' ') : | 45 | char cFill=' ') : |
46 | uMinWidth( uMinWidth ), | 46 | uMinWidth( uMinWidth ), |
@@ -74,6 +74,10 @@ namespace Bu | |||
74 | Fmt &plus( bool bPlus=true ); | 74 | Fmt &plus( bool bPlus=true ); |
75 | Fmt &caps( bool bCaps=true ); | 75 | Fmt &caps( bool bCaps=true ); |
76 | 76 | ||
77 | Fmt &left(); | ||
78 | Fmt &right(); | ||
79 | Fmt ¢er(); | ||
80 | |||
77 | unsigned char uMinWidth; | 81 | unsigned char uMinWidth; |
78 | char cFillChar; | 82 | char cFillChar; |
79 | unsigned short uRadix : 6; | 83 | unsigned short uRadix : 6; |