From 6d7bff2476459049f4f554291a680e0f6003ea66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 7 Jun 2015 21:10:18 +0200 Subject: GH-1060 remove updater code --- mmc_updater/src/UpdateDialog.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 mmc_updater/src/UpdateDialog.h (limited to 'mmc_updater/src/UpdateDialog.h') diff --git a/mmc_updater/src/UpdateDialog.h b/mmc_updater/src/UpdateDialog.h deleted file mode 100644 index d0782f8f..00000000 --- a/mmc_updater/src/UpdateDialog.h +++ /dev/null @@ -1,29 +0,0 @@ -#pragma once - -#include "UpdateObserver.h" - -/** Base class for the updater's UI, sub-classed - * by the different platform implementations. - */ -class UpdateDialog : public UpdateObserver -{ - public: - UpdateDialog(); - virtual ~UpdateDialog() {}; - - /** Sets whether the updater should automatically - * exit once the update has been installed. - */ - void setAutoClose(bool autoClose); - bool autoClose() const; - - virtual void init(int argc, char** argv) = 0; - virtual void exec() = 0; - virtual void quit() = 0; - - virtual void updateFinished(); - - private: - bool m_autoClose; -}; - -- cgit v1.2.3