LeviLamina
Loading...
Searching...
No Matches
ErrorMessage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct MCRESULT;
8// clang-format on
9
10namespace CodeBuilder {
11
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ErrorMessage& operator=(ErrorMessage const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ErrorMessage(::std::string const& requestId, ::MCRESULT result);
30
31 MCAPI ErrorMessage(::std::string const& requestId, ::MCRESULT result, ::std::string const& message);
32
33 MCAPI ~ErrorMessage();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::std::string const& requestId, ::MCRESULT result);
40
41 MCAPI void* $ctor(::std::string const& requestId, ::MCRESULT result, ::std::string const& message);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
50
51} // namespace CodeBuilder
Definition ErrorMessage.h:12
Definition MCRESULT.h:8
Definition Alias.h:14