mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
720 B
25 lines
720 B
#pragma once |
|
|
|
#include <nlohmann/detail/iterators/primitive_iterator.hpp> |
|
|
|
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 {}; |
|
}; |
|
} // namespace detail |
|
} // namespace nlohmann
|
|
|