mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
14 lines
220 B
C++
14 lines
220 B
C++
#include <QDebug>
|
|
|
|
#include "fsdclient.h"
|
|
|
|
CFsdClient::CFsdClient(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
}
|
|
|
|
void CFsdClient::connectTo(const QString &host)
|
|
{
|
|
qDebug() << "Client requests to connect to " << host;
|
|
}
|