LeviLamina
Loading...
Searching...
No Matches
AllowList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/IJsonSerializable.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11namespace mce { class UUID; }
12// clang-format on
13
15public:
16 // AllowList inner types declare
17 // clang-format off
19 // clang-format on
20
21 // AllowList inner types define
23 public:
24 // member variables
25 // NOLINTBEGIN
28 // NOLINTEND
29
30 public:
31 // prevent constructor by default
35
36 public:
37 // member functions
38 // NOLINTBEGIN
39 MCNAPI AllowListEntryMatcher(::std::string name, ::std::string xuid);
40 // NOLINTEND
41
42 public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string name, ::std::string xuid);
46 // NOLINTEND
47 };
48
49public:
50 // member variables
51 // NOLINTBEGIN
54 // NOLINTEND
55
56public:
57 // prevent constructor by default
58 AllowList& operator=(AllowList const&);
59 AllowList(AllowList const&);
60 AllowList();
61
62public:
63 // virtual functions
64 // NOLINTBEGIN
65 // vIndex: 1
66 virtual void serialize(::Json::Value& root) /*override*/;
67
68 // vIndex: 2
69 virtual void deserialize(::Json::Value& root) /*override*/;
70
71 // vIndex: 0
72 virtual ~AllowList() /*override*/ = default;
73 // NOLINTEND
74
75public:
76 // member functions
77 // NOLINTBEGIN
78 MCNAPI bool isIgnoringPlayerLimit(::mce::UUID const& uuid, ::std::string const& xuid) const;
79
80 MCNAPI void tryUpdateEntries(::mce::UUID const& uuid, ::std::string const& xuid, ::std::string const& name);
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86 MCNAPI void $serialize(::Json::Value& root);
87
88 MCNAPI void $deserialize(::Json::Value& root);
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCNAPI static void** $vftable();
95 // NOLINTEND
96};
Definition AllowList.h:14
static MCAPI void ** $vftable()
MCAPI bool isIgnoringPlayerLimit(::mce::UUID const &uuid, ::std::string const &xuid) const
MCAPI void tryUpdateEntries(::mce::UUID const &uuid, ::std::string const &xuid, ::std::string const &name)
MCAPI void $serialize(::Json::Value &root)
MCAPI void $deserialize(::Json::Value &root)
Definition IJsonSerializable.h:10
Definition Value.h:16
Definition UUID.h:7
Definition AllowList.h:22
MCAPI void * $ctor(::std::string name, ::std::string xuid)
MCAPI AllowListEntryMatcher(::std::string name, ::std::string xuid)
Definition Alias.h:14
Definition serialize.h:11