mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-24 04:22:39 +00:00
21 lines
336 B
C++
21 lines
336 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QTcpServer>
|
|
#include "settings/SettingsObject.h"
|
|
#include "logic_export.h"
|
|
|
|
class LOGIC_EXPORT AuthServer: public QObject
|
|
{
|
|
public:
|
|
explicit AuthServer(QObject *parent = 0);
|
|
|
|
quint16 port();
|
|
|
|
private:
|
|
void newConnection();
|
|
|
|
private:
|
|
std::shared_ptr<QTcpServer> m_tcpServer;
|
|
};
|