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/UpdateMessage.h | 42 ----------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 mmc_updater/src/UpdateMessage.h (limited to 'mmc_updater/src/UpdateMessage.h') diff --git a/mmc_updater/src/UpdateMessage.h b/mmc_updater/src/UpdateMessage.h deleted file mode 100644 index fee51ab8..00000000 --- a/mmc_updater/src/UpdateMessage.h +++ /dev/null @@ -1,42 +0,0 @@ -#pragma once - -#include - -/** UpdateMessage stores information for a message - * about the status of update installation sent - * between threads. - */ -class UpdateMessage -{ - public: - enum Type - { - UpdateFailed, - UpdateProgress, - UpdateFinished - }; - - UpdateMessage(void* receiver, Type type) - { - init(receiver,type); - } - - UpdateMessage(Type type) - { - init(0,type); - } - - void* receiver; - Type type; - std::string message; - int progress; - - private: - void init(void* receiver, Type type) - { - this->progress = 0; - this->receiver = receiver; - this->type = type; - } -}; - -- cgit v1.2.3