2017-04-21 20:07:07 +00:00
|
|
|
#include "json.hpp"
|
2015-06-20 22:59:33 +00:00
|
|
|
|
2016-01-30 19:23:14 +00:00
|
|
|
using json = nlohmann::json;
|
2015-06-20 22:59:33 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// create an array value
|
|
|
|
const json array = {1, 2, 3, 4, 5};
|
|
|
|
|
|
|
|
// get am iterator to the first element
|
|
|
|
json::const_iterator it = array.cbegin();
|
|
|
|
|
|
|
|
// serialize the element that the iterator points to
|
|
|
|
std::cout << *it << '\n';
|
|
|
|
}
|