LeviLamina
Loading...
Searching...
No Matches
ServiceResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Identity {
6
7struct ServiceResponse {
8public:
9 // member variables
10 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 ServiceResponse& operator=(ServiceResponse const&);
33 ServiceResponse(ServiceResponse const&);
34 ServiceResponse();
35
36public:
37 // member functions
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCNAPI ::Identity::ServiceResponse& operator=(::Identity::ServiceResponse&&);
41
42 MCNAPI ~ServiceResponse();
43#endif
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49#ifdef LL_PLAT_C
50 MCNAPI void $dtor();
51#endif
52 // NOLINTEND
53};
54
55} // namespace Identity
Definition ServiceResponse.h:7
Definition Alias.h:14