LeviLamina
Loading...
Searching...
No Matches
DisconnectionErrorDetails.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct DisconnectionErrorDetails {
6public:
7 // member variables
8 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 DisconnectionErrorDetails& operator=(DisconnectionErrorDetails const&);
28 DisconnectionErrorDetails(DisconnectionErrorDetails const&);
29 DisconnectionErrorDetails();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI_C void* $ctor(::DisconnectionErrorDetails&&);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCNAPI_C void $dtor();
47 // NOLINTEND
48};
Definition Alias.h:14