summaryrefslogtreecommitdiffstats
path: root/logic/BaseUpdate.cpp
blob: 02b29d3277a9c542e926303b1664e148f41c3679 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "BaseUpdate.h"

BaseUpdate::BaseUpdate ( BaseInstance* inst, QObject* parent ) : Task ( parent )
{
	m_inst = inst;
}

void BaseUpdate::updateDownloadProgress(qint64 current, qint64 total)
{
	emit progress(current, total);
}