LeviLamina
Loading...
Searching...
No Matches
GameTestError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7#include "mc/gametest/framework/GameTestErrorType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { struct ErrorBinding; }
12namespace gametest { struct GameTestErrorContext; }
13// clang-format on
14
15namespace gametest {
16
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 GameTestError& operator=(GameTestError const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
37
38 MCNAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const& message_);
39
41 ::gametest::GameTestErrorType type_,
42 ::std::string const& message_,
43 ::std::vector<::std::string> params_
44 );
45
47 ::gametest::GameTestErrorType type_,
48 ::std::string const& message_,
49 ::std::vector<::std::string> params_,
50 ::std::optional<::gametest::GameTestErrorContext> context_
51 );
52
54 // NOLINTEND
55
56public:
57 // static functions
58 // NOLINTBEGIN
59 MCNAPI static ::Scripting::ErrorBinding bind();
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCNAPI void* $ctor(::gametest::GameTestError const&);
66
68
69 MCNAPI void* $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_);
70
71 MCNAPI void*
72 $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_, ::std::vector<::std::string> params_);
73
74 MCNAPI void* $ctor(
75 ::gametest::GameTestErrorType type_,
76 ::std::string const& message_,
77 ::std::vector<::std::string> params_,
78 ::std::optional<::gametest::GameTestErrorContext> context_
79 );
80 // NOLINTEND
81
82public:
83 // destructor thunk
84 // NOLINTBEGIN
85 MCNAPI void $dtor();
86 // NOLINTEND
87};
88
89} // namespace gametest
Definition BaseError.h:12
Definition GameTestError.h:17
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_, ::std::optional<::gametest::GameTestErrorContext > context_)
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_)
MCAPI GameTestError(::gametest::GameTestError const &)
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_)
MCAPI void * $ctor(::gametest::GameTestError &&)
MCAPI void * $ctor(::gametest::GameTestError const &)
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_)
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_)
static MCAPI ::Scripting::ErrorBinding bind()
MCAPI GameTestError(::gametest::GameTestError &&)
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_, ::std::optional<::gametest::GameTestErrorContext > context_)
Definition Alias.h:14