last changes

This commit is contained in:
2020-06-15 22:22:46 +03:00
parent 5f405ca403
commit 259f321df4
53 changed files with 3368 additions and 842 deletions

25
AdServer/client.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef CLIENT_H
#define CLIENT_H
#include <QObject>
#include "clientbase.h"
class Client : public ClientBase
{
Q_OBJECT
public:
explicit Client(QObject *parent = 0);
void connectToServer(QHostAddress addr);
private:
signals:
public slots:
private slots:
};
#endif // CLIENT_H