1#ifndef TENDUKE_JSON_JSONARRAY_H 
    2#define TENDUKE_JSON_JSONARRAY_H 
    4#include "./JSONElement.h" 
   36    virtual const std::vector<std::shared_ptr<JSONElement>> & 
getValues() 
const = 0;
 
 
 
A JSON array.
Definition JSONArray.h:16
 
virtual std::size_t getSize() const =0
Returns number of elements in the array.
 
virtual bool isEmpty() const =0
Checks if the array is empty.
 
virtual const std::vector< std::shared_ptr< JSONElement > > & getValues() const =0
Returns the elements of the array.
 
Superclass of JSON elements.
Definition JSONElement.h:12
 
JSON support.
Definition JSONArray.h:10
 
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4