forked from bblanchon/ArduinoJson
Added newline at ed of file
This commit is contained in:
@ -27,4 +27,4 @@ class CompactJsonWriter : public JsonWriter {
|
||||
virtual void endObject() { _length += _sink->write('}'); }
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -161,4 +161,4 @@ class JsonNode {
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -38,4 +38,4 @@ class JsonParser {
|
||||
inline JsonNode *parseString();
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -57,4 +57,4 @@ class PrettyJsonWriter : public JsonWriter {
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -17,4 +17,4 @@ class QuotedString {
|
||||
static char *extractFrom(char *input, char **end);
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -25,4 +25,4 @@ class StringBuilder : public Print {
|
||||
int length;
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -32,4 +32,4 @@ class JsonArrayIterator {
|
||||
private:
|
||||
Internals::JsonNode *_node;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -47,4 +47,4 @@ class JsonBuffer {
|
||||
Internals::JsonNode *value);
|
||||
Internals::JsonNode *createStringNode(const char *value);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -49,4 +49,4 @@ class JsonContainer : public Printable, public Internals::JsonNodeWrapper {
|
||||
void removeChild(Internals::JsonNode *);
|
||||
Internals::JsonNode *createNode();
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -31,4 +31,4 @@ class JsonObject : public JsonContainer {
|
||||
private:
|
||||
Internals::JsonNode *getOrCreateNodeAt(const char *key);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -38,4 +38,4 @@ class JsonObjectIterator {
|
||||
private:
|
||||
JsonObjectKeyValue _objectKeyValue;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -30,4 +30,4 @@ class JsonObjectKeyValue {
|
||||
private:
|
||||
Internals::JsonNode *_node;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -43,4 +43,4 @@ class JsonValue : public Internals::JsonNodeWrapper {
|
||||
return static_cast<T>(*this);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user