Added skeleton of class IndentedPrintDecorator

This commit is contained in:
Benoit Blanchon
2014-08-25 09:06:21 +02:00
parent 7246db7691
commit f29904e217
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#include "IndentedPrintDecorator.h"
size_t IndentedPrintDecorator::write(uint8_t c)
{
return print.write(c);
}