2018-01-10 09:18:31 +00:00
|
|
|
#pragma once
|
2017-08-14 15:18:07 +00:00
|
|
|
|
2018-01-29 10:21:11 +00:00
|
|
|
#include <nlohmann/detail/iterators/primitive_iterator.hpp>
|
2017-08-14 15:18:07 +00:00
|
|
|
|
|
|
|
namespace nlohmann
|
|
|
|
{
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
/*!
|
|
|
|
@brief an iterator value
|
|
|
|
|
|
|
|
@note This structure could easily be a union, but MSVC currently does not allow
|
|
|
|
unions members with complex constructors, see https://github.com/nlohmann/json/pull/105.
|
|
|
|
*/
|
|
|
|
template<typename BasicJsonType> struct internal_iterator
|
|
|
|
{
|
|
|
|
/// iterator for JSON objects
|
|
|
|
typename BasicJsonType::object_t::iterator object_iterator {};
|
|
|
|
/// iterator for JSON arrays
|
|
|
|
typename BasicJsonType::array_t::iterator array_iterator {};
|
|
|
|
/// generic iterator for all other types
|
|
|
|
primitive_iterator_t primitive_iterator {};
|
|
|
|
};
|
2018-10-07 16:39:18 +00:00
|
|
|
} // namespace detail
|
|
|
|
} // namespace nlohmann
|