From ece75887e274f40d135a7bcb6b35a648d678b3f7 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Sat, 2 Dec 2023 09:47:26 +0100 Subject: [PATCH] Add helpers: virtual void dcDownloadStart() {}^M virtual bool dcDownloadRequested() const { return false; }^M virtual void dcDownloadResetRequest() {}^M virtual QString dcDownloadFileName() const { return ""; }^M virtual void dcDownloadReportStart() {}^M --- include/hwapi.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/hwapi.h b/include/hwapi.h index 70cbde7..8464ae0 100644 --- a/include/hwapi.h +++ b/include/hwapi.h @@ -1307,8 +1307,11 @@ public: // download device controller void dcDownloadInit(QString const &fileToDownload) override; - void dcDownloadStart(QString const &fileToDownload) override; - void dcDownloadReportStart(QString const &fileToDownload) override; + void dcDownloadStart() override; + bool dcDownloadRequested() const override; + QString dcDownloadFileName() const override; + void dcDownloadResetRequest() override; + void dcDownloadReportStart() override; bool dcDownloadStarted() const override; bool dcDownloadRunning() const override; bool dcDownloadFinished() const override;