LeviLamina
Loading...
Searching...
No Matches
GatheringServerInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class GatheringServerInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mGatheringId;
10 ::ll::TypedStorage<8, 32, ::std::string> mGatheringIdAsCreatorName;
11 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 GatheringServerInfo();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI GatheringServerInfo(::GatheringServerInfo const&);
22
23#ifdef LL_PLAT_C
24 MCAPI GatheringServerInfo(::std::string const& gatheringId, ::std::string const& gatheringTitle);
25
26 MCFOLD ::std::string const& getCreatorName() const;
27
28 MCFOLD ::std::string const& getGatheringId() const;
29
30 MCFOLD bool isValid() const;
31
32 MCFOLD ::GatheringServerInfo& operator=(::GatheringServerInfo&&);
33#endif
34
35 MCFOLD ::GatheringServerInfo& operator=(::GatheringServerInfo const&);
36
37 MCAPI ~GatheringServerInfo();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCFOLD void* $ctor(::GatheringServerInfo const&);
44
45#ifdef LL_PLAT_C
46 MCAPI void* $ctor(::std::string const& gatheringId, ::std::string const& gatheringTitle);
47#endif
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55};