Added ostd::OutputHandlerBase::tab() virtual function

This commit is contained in:
Sylar 2026-01-05 22:57:37 +01:00
parent 1c7e2a974b
commit 3990a50b00
2 changed files with 2 additions and 1 deletions

View file

@ -1 +1 @@
1939 1940

View file

@ -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; }