Qt: Implement GDB server

This commit is contained in:
Jean-Baptiste Boric
2020-12-17 18:32:29 +01:00
committed by Connor McLaughlin
parent abd2399aaf
commit 7dcacc2cda
9 changed files with 191 additions and 0 deletions

View File

@ -21,6 +21,8 @@ class DebuggerWindow;
class HostDisplay;
struct GameListEntry;
class GDBServer;
class MainWindow final : public QMainWindow
{
Q_OBJECT
@ -145,4 +147,6 @@ private:
bool m_emulation_running = false;
bool m_was_paused_by_focus_loss = false;
GDBServer* m_gdb_server = nullptr;
};