LeviLamina
Loading...
Searching...
No Matches
IDebuggerController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
8public:
9 // IDebuggerController inner types define
10 using MessageHandler = ::std::function<void(::std::string_view)>;
11
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~IDebuggerController() = default;
16
17 virtual bool attach(bool, ::std::optional<::std::string>, ::std::function<void(::std::string_view)>) = 0;
18
19 virtual void detach() = 0;
20
21 virtual bool closed() const = 0;
22
23 virtual void pumpMessages() = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
32
33} // namespace Scripting
Definition IDebuggerController.h:7