Wt
4.11.1
|
A JSON array. More...
#include <Array.h>
Inherits std::vector< T >.
Public Member Functions | |
Array () | |
Constructor. | |
Array (const Array &other) | |
Copy constructor. | |
Array & | operator= (const Array &other) |
Assignment operator. | |
Array (Array &&other) | |
Move constructor. | |
Array (std::initializer_list< Value > list) | |
Initializer list constructor. | |
Array & | operator= (Array &&other) |
Assignment operator. | |
Static Public Attributes | |
static Array | Empty |
Empty array constant. | |
A JSON array.
This class represents a JSON array. It is implemented as a std::vector<Json::Value>
– no new API to learn here!