mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-15 15:57:59 +00:00
22 lines
380 B
C++
22 lines
380 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QNetworkAccessManager>
|
|
|
|
class CompatFetcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CompatFetcher(QObject *parent = nullptr);
|
|
|
|
void start();
|
|
|
|
static bool isGfeVersionSupported(QString gfeVersion);
|
|
|
|
private slots:
|
|
void handleCompatInfoFetched(QNetworkReply* reply);
|
|
|
|
private:
|
|
QNetworkAccessManager m_Nam;
|
|
};
|