mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-12 17:35:49 -04:00
19 lines
383 B
C++
19 lines
383 B
C++
#pragma once
|
|
|
|
#include <QThread>
|
|
|
|
bool FetchAndVerifyFile(const char *name, const char *file, const char *url, std::string *out,
|
|
const std::vector<std::string> &extraHeaders = std::vector<std::string>());
|
|
|
|
class WhatsNewInfoThread : public QThread {
|
|
Q_OBJECT
|
|
|
|
virtual void run() override;
|
|
|
|
signals:
|
|
void Result(const QString &text);
|
|
|
|
public:
|
|
inline WhatsNewInfoThread() {}
|
|
};
|