LeviLamina
Loading...
Searching...
No Matches
ScriptTLSOnlyError.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 ScriptTLSOnlyError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptTLSOnlyError& operator=(ScriptTLSOnlyError const&);
25 ScriptTLSOnlyError(ScriptTLSOnlyError const&);
26 ScriptTLSOnlyError();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI explicit ScriptTLSOnlyError(::std::string uri);
32
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCNAPI static ::Scripting::ErrorBinding bind();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string uri);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace ScriptModuleMinecraftNet
static MCAPI ::Scripting::ErrorBinding bind()
MCAPI ScriptTLSOnlyError(::std::string uri)
MCAPI void * $ctor(::std::string uri)
Definition BaseError.h:12
Definition ErrorBinding.h:16
Definition Alias.h:14