LeviLamina
Loading...
Searching...
No Matches
WatchdogEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/watchdog/WatchdogEventType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ContextId; }
11// clang-format on
12
13namespace Scripting {
14
16public:
17 // member variables
18 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 WatchdogEvent& operator=(WatchdogEvent const&);
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI WatchdogEvent(
36 ::Scripting::WatchdogEventType eventType,
37 ::Scripting::ContextId contextId,
38 ::std::string phaseName,
39 ::std::chrono::milliseconds timeMs,
40 uint64 memoryUsageMB
41 );
42
43 MCAPI ~WatchdogEvent();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(
50 ::Scripting::WatchdogEventType eventType,
51 ::Scripting::ContextId contextId,
52 ::std::string phaseName,
53 ::std::chrono::milliseconds timeMs,
54 uint64 memoryUsageMB
55 );
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCFOLD void $dtor();
62 // NOLINTEND
63};
64
65} // namespace Scripting
Definition ContextId.h:7
Definition WatchdogEvent.h:15
Definition Alias.h:14