LeviLamina
Loading...
Searching...
No Matches
ValueConstIterator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/ValueIteratorBase.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11// clang-format on
12
13namespace Json {
14
16public:
17 // ValueConstIterator inner types define
18 using size_t = uint;
19
20 using difference_type = int;
21
22 using reference = ::Json::Value const&;
23
24 using pointer = ::Json::Value const*;
25
27
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCFOLD ::Json::Value const& operator*() const;
34
35 MCFOLD ::Json::ValueConstIterator& operator++();
36 // NOLINTEND
37};
38
39} // namespace Json
Definition ValueConstIterator.h:15
Definition ValueIteratorBase.h:15
Definition Value.h:16