2013-08-07 00:38:18 +01:00
|
|
|
#include "BaseUpdate.h"
|
|
|
|
|
|
|
|
BaseUpdate::BaseUpdate ( BaseInstance* inst, QObject* parent ) : Task ( parent )
|
|
|
|
{
|
|
|
|
m_inst = inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseUpdate::updateDownloadProgress(qint64 current, qint64 total)
|
|
|
|
{
|
2013-09-17 23:00:35 +01:00
|
|
|
emit progress(current, total);
|
2013-08-07 00:38:18 +01:00
|
|
|
}
|