Merge branch 'refactor/net-split-headers-to-proxy-class' into feat/launcher-updater

This commit is contained in:
Rachel Powers 2023-06-25 14:31:16 -07:00
commit f39d2de0cc
No known key found for this signature in database
GPG Key ID: E10E321EB160949B

View File

@ -59,8 +59,10 @@ class Download : public NetAction {
public:
~Download() override = default;
#if defined(LAUNCHER_APPLICATION)
#if defined(LAUNCHER_APPLICATION)
static auto makeCached(QUrl url, MetaEntryPtr entry, Options options = Option::NoOptions) -> Download::Ptr;
#endif
static auto makeByteArray(QUrl url, std::shared_ptr<QByteArray> output, Options options = Option::NoOptions) -> Download::Ptr;
static auto makeFile(QUrl url, QString path, Options options = Option::NoOptions) -> Download::Ptr;