LeviLamina
Loading...
Searching...
No Matches
AccessTokenInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct AccessTokenInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 AccessTokenInfo& operator=(AccessTokenInfo const&);
16 AccessTokenInfo(AccessTokenInfo const&);
17 AccessTokenInfo();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22#ifdef LL_PLAT_C
23 MCNAPI AccessTokenInfo(::std::string _email, int64 _expiration);
24
25 MCNAPI ~AccessTokenInfo();
26#endif
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI void* $ctor(::std::string _email, int64 _expiration);
34#endif
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
41 MCNAPI void $dtor();
42#endif
43 // NOLINTEND
44};
Definition Alias.h:14