Renamed IndentedPrintDecorator into IndentedPrint

This commit is contained in:
Benoit Blanchon
2014-08-26 09:56:05 +02:00
parent b5002265cf
commit 23e61cc0f7
9 changed files with 19 additions and 19 deletions

View File

@ -6,7 +6,7 @@
#pragma once
#include "Print.h"
#include "IndentedPrintDecorator.h"
#include "IndentedPrint.h"
namespace ArduinoJson
{
@ -16,7 +16,7 @@ namespace ArduinoJson
{
public:
PrettyPrintDecorator(IndentedPrintDecorator& p)
PrettyPrintDecorator(IndentedPrint& p)
: sink(p)
{
previousChar = 0;
@ -27,7 +27,7 @@ namespace ArduinoJson
private:
uint8_t previousChar;
IndentedPrintDecorator& sink;
IndentedPrint& sink;
bool inString;
bool inEmptyBlock()