mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
24 lines
499 B
C++
24 lines
499 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com> and contributors.
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "core/types.h"
|
|
#include "gdbconnection.h"
|
|
#include <QtNetwork/QTcpServer>
|
|
|
|
class GDBServer : public QTcpServer
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GDBServer(QObject* parent = nullptr);
|
|
~GDBServer();
|
|
|
|
public Q_SLOTS:
|
|
void start(quint16 port);
|
|
void stop();
|
|
|
|
protected:
|
|
void incomingConnection(qintptr socketDescriptor) override;
|
|
};
|