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
17public:
18 // ValueIterator inner types define
19 using size_t = uint;
20
21 using difference_type = int;
22
23 using reference = ::Json::Value&;
24
25 using pointer = ::Json::Value*;
26
28
30
31public:
32 // prevent constructor by default
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 void* $ctor(::Json::ValueConstIterator const& other);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54};
55
56} // namespace Json
Definition ValueConstIterator.h:15
Definition ValueIteratorBase.h:15
Definition ValueIterator.h:16
Definition Value.h:16