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
17struct GameTestError : public ::Scripting::BaseError {
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 GameTestError& operator=(GameTestError const&);
29 GameTestError();
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
53 MCNAPI ::gametest::GameTestError& operator=(::gametest::GameTestError&&);
54
56 // NOLINTEND
57
58public:
59 // static functions
60 // NOLINTBEGIN
61 MCNAPI static ::Scripting::ErrorBinding bind();
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
68
69 MCNAPI void* $ctor(::gametest::GameTestError const&);
70
71 MCNAPI void* $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_);
72
73 MCNAPI void*
74 $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_, ::std::vector<::std::string> params_);
75
76 MCNAPI void* $ctor(
77 ::gametest::GameTestErrorType type_,
78 ::std::string const& message_,
79 ::std::vector<::std::string> params_,
80 ::std::optional<::gametest::GameTestErrorContext> context_
81 );
82 // NOLINTEND
83
84public:
85 // destructor thunk
86 // NOLINTBEGIN
87 MCNAPI void $dtor();
88 // NOLINTEND
89};
90
91} // namespace gametest
Definition BaseError.h:12
Definition ErrorBinding.h:15
Definition GameTestErrorContext.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::gametest::GameTestError & operator=(::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