LeviLamina
Loading...
Searching...
No Matches
SigninResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace WebServices::EduSignin {
6
7struct SigninResponse {
8public:
9 // member variables
10 // NOLINTBEGIN
18 // NOLINTEND
19
20#ifdef LL_PLAT_S
21public:
22 // prevent constructor by default
23 SigninResponse& operator=(SigninResponse const&);
24 SigninResponse(SigninResponse const&);
25 SigninResponse();
26
27#else // LL_PLAT_C
28public:
29 // prevent constructor by default
30 SigninResponse& operator=(SigninResponse const&);
31 SigninResponse();
32
33#endif
34public:
35 // member functions
36 // NOLINTBEGIN
37#ifdef LL_PLAT_C
38 MCNAPI SigninResponse(::WebServices::EduSignin::SigninResponse&&);
39
40 MCNAPI SigninResponse(::WebServices::EduSignin::SigninResponse const&);
41
42 MCNAPI ~SigninResponse();
43#endif
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void* $ctor(::WebServices::EduSignin::SigninResponse&&);
51
52 MCNAPI void* $ctor(::WebServices::EduSignin::SigninResponse const&);
53#endif
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59#ifdef LL_PLAT_C
60 MCNAPI void $dtor();
61#endif
62 // NOLINTEND
63};
64
65} // namespace WebServices::EduSignin
Definition SigninResponse.h:7
Definition Alias.h:14