LeviLamina
Loading...
Searching...
No Matches
ScriptInternalWebSocketError.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
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraftNet {
14
15class ScriptInternalWebSocketError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptInternalWebSocketError& operator=(ScriptInternalWebSocketError const&);
25 ScriptInternalWebSocketError(ScriptInternalWebSocketError const&);
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCNAPI explicit ScriptInternalWebSocketError(::std::error_code const& error);
33 // NOLINTEND
34
35public:
36 // static functions
37 // NOLINTBEGIN
38 MCNAPI static ::Scripting::ErrorBinding bind();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor();
45
46 MCNAPI void* $ctor(::std::error_code const& error);
47 // NOLINTEND
48};
49
50} // namespace ScriptModuleMinecraftNet
MCAPI ScriptInternalWebSocketError(::std::error_code const &error)
MCAPI void * $ctor(::std::error_code const &error)
static MCAPI ::Scripting::ErrorBinding bind()
Definition BaseError.h:12
Definition ErrorBinding.h:16
Definition Alias.h:14