Files
aliendefender/AdServer/connection.h
2020-06-15 22:22:46 +03:00

25 lines
339 B
C++

#ifndef CONNECTION_H
#define CONNECTION_H
#include <QObject>
#include "clientbase.h"
class Connection : public ClientBase
{
Q_OBJECT
public:
explicit Connection(int id, QTcpSocket * socket, QObject *parent = 0);
int Id() const {return m_id;}
private:
int m_id;
signals:
private slots:
};
#endif // CONNECTION_H