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& operator=(::AccessTokenInfo&&);
26
27 MCNAPI ~AccessTokenInfo();
28#endif
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCNAPI void* $ctor(::std::string _email, int64 _expiration);
36#endif
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI void $dtor();
44#endif
45 // NOLINTEND
46};
Definition Alias.h:14