S3 bucket listing support and network code refactors.

* Adds support for listing all objects in an S3 bucket.
* Renames a bunch of network related classes (Download->Action)
* Net actions now have static constructors
This commit is contained in:
Petr Mrázek
2013-10-26 19:55:48 +02:00
parent c467ebf132
commit 9233477295
27 changed files with 405 additions and 243 deletions

View File

@ -18,7 +18,7 @@
#include <QObject>
#include <QList>
#include <QUrl>
#include "net/DownloadJob.h"
#include "net/NetJob.h"
#include "tasks/Task.h"
#include "BaseUpdate.h"
@ -43,8 +43,8 @@ private slots:
void jarlibFailed();
private:
DownloadJobPtr specificVersionDownloadJob;
DownloadJobPtr jarlibDownloadJob;
NetJobPtr specificVersionDownloadJob;
NetJobPtr jarlibDownloadJob;
// target version, determined during this task
std::shared_ptr<MinecraftVersion> targetVersion;