LeviLamina
Loading...
Searching...
No Matches
TelemetryError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace TelemtetryEvents {
6
7struct TelemetryError {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 TelemetryError& operator=(TelemetryError const&);
17 TelemetryError(TelemetryError const&);
18 TelemetryError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23#ifdef LL_PLAT_C
24 MCNAPI auto toJsonStr() const;
25
26 MCNAPI ~TelemetryError();
27#endif
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI void $dtor();
35#endif
36 // NOLINTEND
37};
38
39} // namespace TelemtetryEvents
Definition Alias.h:14