LeviLamina
Loading...
Searching...
No Matches
EduSharedUriResource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8// clang-format on
9
10struct EduSharedUriResource {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> linkUri;
15 ::ll::TypedStorage<8, 32, ::std::string> buttonName;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 EduSharedUriResource& operator=(EduSharedUriResource const&);
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI EduSharedUriResource();
26
27 MCAPI EduSharedUriResource(::EduSharedUriResource const&);
28
29 MCAPI explicit EduSharedUriResource(::CompoundTag const& tag);
30
31#ifdef LL_PLAT_C
32 MCAPI bool operator!=(::EduSharedUriResource const& rhs) const;
33#endif
34
35 MCFOLD ::EduSharedUriResource& operator=(::EduSharedUriResource&&);
36
37 MCAPI bool operator==(::EduSharedUriResource const& rhs) const;
38
39 MCAPI ~EduSharedUriResource();
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45#ifdef LL_PLAT_C
46 MCAPI static ::std::optional<::EduSharedUriResource>
47 create(::std::unordered_map<::std::string, ::std::string> const& values);
48#endif
49
50 MCAPI static ::EduSharedUriResource fromTag(::CompoundTag const& tag);
51
52 MCAPI static ::std::unique_ptr<::CompoundTag> toTag(::EduSharedUriResource const& resource);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCFOLD void* $ctor();
59
60 MCFOLD void* $ctor(::EduSharedUriResource const&);
61
62 MCAPI void* $ctor(::CompoundTag const& tag);
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCFOLD void $dtor();
69 // NOLINTEND
70};
Definition CompoundTag.h:23