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