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