LeviLamina
Loading...
Searching...
No Matches
AuthToken.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Identity {
6
7struct AuthToken {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17#ifdef LL_PLAT_S
18public:
19 // prevent constructor by default
20 AuthToken& operator=(AuthToken const&);
21 AuthToken(AuthToken const&);
22 AuthToken();
23
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 AuthToken(AuthToken const&);
28 AuthToken();
29
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCNAPI ::Identity::AuthToken& operator=(::Identity::AuthToken&&);
36
37 MCNAPI ::Identity::AuthToken& operator=(::Identity::AuthToken const&);
38#endif
39
40 MCNAPI ~AuthToken();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCNAPI void $dtor();
47 // NOLINTEND
48};
49
50} // namespace Identity
Definition AuthToken.h:7
MCAPI void $dtor()
Definition Alias.h:14