mirror of
https://github.com/obsproject/obs-studio.git
synced 2025-12-24 06:58:03 -05:00
23 lines
395 B
C++
23 lines
395 B
C++
#pragma once
|
|
|
|
#include <QThread>
|
|
|
|
class MacUpdateThread : public QThread {
|
|
Q_OBJECT
|
|
|
|
bool manualUpdate;
|
|
|
|
virtual void run() override;
|
|
|
|
void info(const QString &title, const QString &text);
|
|
|
|
signals:
|
|
void Result(const QString &branch, bool manual);
|
|
|
|
private slots:
|
|
void infoMsg(const QString &title, const QString &text);
|
|
|
|
public:
|
|
MacUpdateThread(bool manual) : manualUpdate(manual) {}
|
|
};
|