LeviLamina
Loading...
Searching...
No Matches
ScriptBreakpointValidator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/IBreakpointValidator.h"
7
8class ScriptBreakpointValidator : public ::Scripting::IBreakpointValidator {
9public:
10 // member variables
11 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 ScriptBreakpointValidator& operator=(ScriptBreakpointValidator const&);
19 ScriptBreakpointValidator(ScriptBreakpointValidator const&);
20 ScriptBreakpointValidator();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~ScriptBreakpointValidator() /*override*/ = default;
26
27 virtual bool validatePath(::std::string_view sourcePath) /*override*/;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33 MCNAPI bool $validatePath(::std::string_view sourcePath);
34
35
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
static MCAPI void ** $vftable()
MCAPI bool $validatePath(::std::string_view sourcePath)
Definition IBreakpointValidator.h:7
Definition Alias.h:14