From 923347729557eed76e4f7e9f6f5f1a79216de0a4 Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sat, 26 Oct 2013 19:55:48 +0200 Subject: 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 --- logic/OneSixUpdate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'logic/OneSixUpdate.h') diff --git a/logic/OneSixUpdate.h b/logic/OneSixUpdate.h index ed8dcbcd..7c6fce1b 100644 --- a/logic/OneSixUpdate.h +++ b/logic/OneSixUpdate.h @@ -18,7 +18,7 @@ #include #include #include -#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 targetVersion; -- cgit