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