forked from bblanchon/ArduinoJson
Added skeleton of class IndentedPrintDecorator
This commit is contained in:
11
JsonGenerator/IndentedPrintDecorator.cpp
Normal file
11
JsonGenerator/IndentedPrintDecorator.cpp
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user