mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:19:56 +00:00
27 lines
474 B
C++
27 lines
474 B
C++
#ifndef OPENMW_PINGUPDATER_HPP
|
|
#define OPENMW_PINGUPDATER_HPP
|
|
|
|
#include <QObject>
|
|
#include <QVector>
|
|
|
|
#include "Types.hpp"
|
|
|
|
class PingUpdater : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
void addServer(int row, const AddrPair &addrPair);
|
|
public slots:
|
|
void stop();
|
|
void process();
|
|
signals:
|
|
void start();
|
|
void updateModel(int row, unsigned ping);
|
|
void finished();
|
|
private:
|
|
QVector<ServerRow> servers;
|
|
bool run;
|
|
};
|
|
|
|
|
|
#endif //OPENMW_PINGUPDATER_HPP
|