Test that JsonArray can store integers

This commit is contained in:
Benoit Blanchon
2014-10-05 14:55:14 +02:00
parent 4c67d0579a
commit 21259bc61a
4 changed files with 23 additions and 4 deletions

View File

@ -1,2 +1,14 @@
#include "JsonArray.h"
#include "JsonValue.h"
JsonValue JsonArray::operator[](int index) const
{
for (JsonNodeIterator it = beginChildren(); it != endChildren(); ++it)
{
if (!index) return JsonValue(*it);
index--;
}
return JsonValue();
}