quill/otamanager.h
2021-08-25 13:16:41 -04:00

26 lines
392 B
C++

#ifndef OTAMANAGER_H
#define OTAMANAGER_H
#include <QWidget>
namespace Ui {
class otaManager;
}
class otaManager : public QWidget
{
Q_OBJECT
public:
explicit otaManager(QWidget *parent = nullptr);
~otaManager();
private:
Ui::otaManager *ui;
signals:
void canOtaUpdate(bool yesno);
void downloadedOtaUpdate(bool wasDownloadSuccessful);
};
#endif // OTAMANAGER_H