quill/otamanager.h

28 lines
449 B
C
Raw Normal View History

#ifndef OTAMANAGER_H
#define OTAMANAGER_H
#include <QWidget>
namespace Ui {
class otaManager;
}
class otaManager : public QWidget
{
Q_OBJECT
public:
QString className = this->metaObject()->className();
explicit otaManager(QWidget *parent = nullptr);
~otaManager();
private:
Ui::otaManager *ui;
signals:
void canOtaUpdate(bool yesno);
2021-08-25 10:16:41 -07:00
void downloadedOtaUpdate(bool wasDownloadSuccessful);
};
#endif // OTAMANAGER_H