Replaced public inheritance by protected and private

This commit is contained in:
Benoit Blanchon
2014-07-19 14:41:29 +02:00
parent b278d7711b
commit e94575b4b8
12 changed files with 58 additions and 55 deletions

View File

@ -11,7 +11,7 @@ namespace ArduinoJson
{
namespace Parser
{
class JsonPair : public JsonToken
class JsonPair : JsonToken
{
public:
JsonPair(JsonToken token)
@ -27,7 +27,7 @@ namespace ArduinoJson
JsonValue value()
{
return JsonValue(nextSibling());
return nextSibling();
}
};
}