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
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCNAPI_C void* $ctor(::std::string _email, int64 _expiration);
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCNAPI_C void $dtor();
35 // NOLINTEND
36};
Definition Alias.h:14