Interface implemented by JSON array type containers. More...
#include <Json.h>
Public Member Functions | |
~ArrayType () | |
Virtual destructor. | |
virtual void | addElement (const T &element)=0 |
Add element to array. Ordered containers like vector or list must append element at the end. | |
virtual void | forEach (const std::function< void(const T &element)> &f) const =0 |
Iterate through array. | |
Interface implemented by JSON array type containers.