LeviLamina
Loading...
Searching...
No Matches
ListBlockVolumeIterator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7#include "mc/world/level/block/BaseBlockLocationIterator.h"
8
9// auto generated forward declare list
10// clang-format off
11class ListBlockVolume;
12// clang-format on
13
14class ListBlockVolumeIterator : public ::BaseBlockLocationIterator {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::ListBlockVolume const&> mListBlockVolume;
19 ::ll::TypedStorage<8, 8, ::std::_List_const_iterator<::std::_List_val<::std::_List_simple_types<::BlockPos>>>>
20 mCurrentIterator;
21 ::ll::TypedStorage<8, 8, ::std::_List_const_iterator<::std::_List_val<::std::_List_simple_types<::BlockPos>>>>
22 mEndIterator;
23 ::ll::TypedStorage<8, 8, uint64> mChangeCount;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ListBlockVolumeIterator& operator=(ListBlockVolumeIterator const&);
29 ListBlockVolumeIterator(ListBlockVolumeIterator const&);
30 ListBlockVolumeIterator();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~ListBlockVolumeIterator() /*override*/ = default;
36
37 virtual ::BaseBlockLocationIterator& operator++() /*override*/;
38
39 virtual bool isValid() const /*override*/;
40
41 virtual void _begin() /*override*/;
42
43 virtual void _end() /*override*/;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $isValid() const;
50
51 MCAPI void $_begin();
52
53 MCAPI void $_end();
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BaseBlockLocationIterator.h:8
Definition ListBlockVolume.h:17