Added ostd::OutputHandlerBase::tab() virtual function
This commit is contained in:
parent
1c7e2a974b
commit
3990a50b00
2 changed files with 2 additions and 1 deletions
|
|
@ -1 +1 @@
|
||||||
1939
|
1940
|
||||||
|
|
|
||||||
|
|
@ -135,6 +135,7 @@ namespace ostd
|
||||||
inline virtual OutputHandlerBase& p(double f, uint8_t precision = 0) { return *this; }
|
inline virtual OutputHandlerBase& p(double f, uint8_t precision = 0) { return *this; }
|
||||||
|
|
||||||
inline virtual OutputHandlerBase& nl(void) { return *this; }
|
inline virtual OutputHandlerBase& nl(void) { return *this; }
|
||||||
|
inline virtual OutputHandlerBase& tab(void) { return *this; }
|
||||||
inline virtual OutputHandlerBase& flush(void) { return *this; }
|
inline virtual OutputHandlerBase& flush(void) { return *this; }
|
||||||
inline virtual OutputHandlerBase& reset(void) { return *this; }
|
inline virtual OutputHandlerBase& reset(void) { return *this; }
|
||||||
inline virtual OutputHandlerBase& clear(void) { return *this; }
|
inline virtual OutputHandlerBase& clear(void) { return *this; }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue