Renamed all .h files into .hpp (so that Sublime Text selects C++ syntax)

This commit is contained in:
Benoit Blanchon
2014-10-19 15:46:36 +02:00
parent 074c39ca5b
commit 0daf82eee2
49 changed files with 91 additions and 132 deletions

View File

@ -0,0 +1,36 @@
#pragma once
#include "JsonContainer.hpp"
namespace ArduinoJson
{
class JsonArray : public JsonContainer
{
public:
JsonArray()
{
}
explicit JsonArray(Internals::JsonNode* node)
: JsonContainer(node)
{
}
JsonValue operator[](int index) const;
void add(bool value);
void add(const char* value);
void add(double value, int decimals=2);
void add(int value) { add((long) value); }
void add(long value);
void add(JsonContainer nestedArray); // TODO: should allow JsonValue too
JsonArray createNestedArray();
JsonObject createNestedObject();
bool success()
{
return _node && _node->isArray();
}
};
}