mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
21 lines
261 B
C++
21 lines
261 B
C++
#ifndef FSDCLIENT_H
|
|
#define FSDCLIENT_H
|
|
|
|
#include <QObject>
|
|
|
|
class CFsdClient : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CFsdClient(QObject *parent = 0);
|
|
|
|
void connectTo(const QString &host);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // FSDCLIENT_H
|