LeviLamina
Loading...
Searching...
No Matches
MinecraftScriptSentryPlugin.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/diagnostics/IScriptSentryPlugin.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
13namespace ScriptModuleDiagnostics {
14
15class MinecraftScriptSentryPlugin : public ::ScriptModuleDiagnostics::IScriptSentryPlugin {
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 MinecraftScriptSentryPlugin& operator=(MinecraftScriptSentryPlugin const&);
26 MinecraftScriptSentryPlugin(MinecraftScriptSentryPlugin const&);
27 MinecraftScriptSentryPlugin();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~MinecraftScriptSentryPlugin() /*override*/ = default;
33
34 virtual void setSentryLogger(::std::unique_ptr<::ScriptSentryLogger> sentryLogger) /*override*/;
35
36 virtual ::std::string const& getPlatformName() const /*override*/;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCNAPI void $setSentryLogger(::std::unique_ptr<::ScriptSentryLogger> sentryLogger);
43
44 MCNAPI ::std::string const& $getPlatformName() const;
45
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleDiagnostics
Definition IScriptSentryPlugin.h:12
MCAPI::std::string const & $getPlatformName() const
MCAPI void $setSentryLogger(::std::unique_ptr<::ScriptSentryLogger > sentryLogger)
Definition ScriptSentryLogger.h:15
Definition Alias.h:14