diff options
Diffstat (limited to 'src/core/debugger/debugger_interface.h')
| -rw-r--r-- | src/core/debugger/debugger_interface.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/debugger/debugger_interface.h b/src/core/debugger/debugger_interface.h index 0b357fcb5..e6d4c0190 100644 --- a/src/core/debugger/debugger_interface.h +++ b/src/core/debugger/debugger_interface.h | |||
| @@ -24,6 +24,8 @@ enum class DebuggerAction { | |||
| 24 | 24 | ||
| 25 | class DebuggerBackend { | 25 | class DebuggerBackend { |
| 26 | public: | 26 | public: |
| 27 | virtual ~DebuggerBackend() = default; | ||
| 28 | |||
| 27 | /** | 29 | /** |
| 28 | * Can be invoked from a callback to synchronously wait for more data. | 30 | * Can be invoked from a callback to synchronously wait for more data. |
| 29 | * Will return as soon as least one byte is received. Reads up to 4096 bytes. | 31 | * Will return as soon as least one byte is received. Reads up to 4096 bytes. |
| @@ -51,6 +53,8 @@ class DebuggerFrontend { | |||
| 51 | public: | 53 | public: |
| 52 | explicit DebuggerFrontend(DebuggerBackend& backend_) : backend{backend_} {} | 54 | explicit DebuggerFrontend(DebuggerBackend& backend_) : backend{backend_} {} |
| 53 | 55 | ||
| 56 | virtual ~DebuggerFrontend() = default; | ||
| 57 | |||
| 54 | /** | 58 | /** |
| 55 | * Called after the client has successfully connected to the port. | 59 | * Called after the client has successfully connected to the port. |
| 56 | */ | 60 | */ |