GH-849 Further NetJob related fixes
This commit is contained in:
parent
d5c79db12c
commit
84549ed807
11 changed files with 39 additions and 42 deletions
|
@ -21,17 +21,17 @@
|
|||
#include "MD5EtagDownload.h"
|
||||
#include "CacheDownload.h"
|
||||
#include "HttpMetaCache.h"
|
||||
#include "tasks/ProgressProvider.h"
|
||||
#include "tasks/Task.h"
|
||||
#include "QObjectPtr.h"
|
||||
|
||||
class NetJob;
|
||||
typedef QObjectPtr<NetJob> NetJobPtr;
|
||||
|
||||
class NetJob : public ProgressProvider
|
||||
class NetJob : public Task
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit NetJob(QString job_name) : ProgressProvider(), m_job_name(job_name) {}
|
||||
explicit NetJob(QString job_name) : Task(), m_job_name(job_name) {}
|
||||
virtual ~NetJob() {}
|
||||
template <typename T> bool addNetAction(T action)
|
||||
{
|
||||
|
@ -87,7 +87,7 @@ private slots:
|
|||
void startMoreParts();
|
||||
|
||||
public slots:
|
||||
virtual void start();
|
||||
virtual void executeTask();
|
||||
// FIXME: implement
|
||||
virtual void abort() {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue