LeviLamina
Loading...
Searching...
No Matches
ValueIterator.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; }
11namespace Json { class ValueConstIterator; }
12// clang-format on
13
14namespace Json {
15
16class ValueIterator : public ::Json::ValueIteratorBase {
17public:
18 // ValueIterator inner types define
19 using SelfType = ::Json::ValueIterator;
20
21 using difference_type = int;
22
23 using pointer = ::Json::Value*;
24
25 using reference = ::Json::Value&;
26
27 using size_t = uint;
28
29 using value_type = ::Json::Value;
30
31public:
32 // prevent constructor by default
33 ValueIterator();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit ValueIterator(::Json::ValueConstIterator const& other);
39
40 MCAPI ~ValueIterator();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCFOLD_C void* $ctor(::Json::ValueIterator const& other);
47
48 MCFOLD void* $ctor(::Json::ValueConstIterator const& other);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56};
57
58} // namespace Json
Definition ValueConstIterator.h:15
Definition ValueIteratorBase.h:15
Definition ValueIterator.h:16
Definition Value.h:16