2011-08-24 09:17:57 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2011-08-27 17:31:03 +00:00
|
|
|
/** UpdateMessage stores information for a message
|
|
|
|
* about the status of update installation sent
|
|
|
|
* between threads.
|
|
|
|
*/
|
2011-08-24 09:17:57 +00:00
|
|
|
class UpdateMessage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
UpdateFailed,
|
|
|
|
UpdateProgress,
|
|
|
|
UpdateFinished
|
|
|
|
};
|
|
|
|
|
|
|
|
UpdateMessage(void* receiver, Type type)
|
|
|
|
{
|
|
|
|
init(receiver,type);
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateMessage(Type type)
|
|
|
|
{
|
|
|
|
init(0,type);
|
|
|
|
}
|
|
|
|
|
2011-08-29 20:39:17 +00:00
|
|
|
void* receiver;
|
|
|
|
Type type;
|
|
|
|
std::string message;
|
|
|
|
int progress;
|
|
|
|
|
|
|
|
private:
|
2011-08-24 09:17:57 +00:00
|
|
|
void init(void* receiver, Type type)
|
|
|
|
{
|
|
|
|
this->progress = 0;
|
|
|
|
this->receiver = receiver;
|
|
|
|
this->type = type;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|