Extracted class IndentedPrintDecorator from PrettyPrintDecorator

This commit is contained in:
Benoit Blanchon
2014-08-26 09:28:41 +02:00
parent d877d77b63
commit 6539c6982c
12 changed files with 128 additions and 31 deletions

View File

@ -32,4 +32,9 @@ size_t Print::print(long value)
return print(tmp);
}
size_t Print::println()
{
return /*write('\r') +*/ write('\n');
}
#endif