diff options
Diffstat (limited to 'src/libstore/download.hh')
-rw-r--r-- | src/libstore/download.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/download.hh b/src/libstore/download.hh index a727936d1648..7aec8de73e48 100644 --- a/src/libstore/download.hh +++ b/src/libstore/download.hh @@ -19,11 +19,11 @@ struct DownloadResult string data, etag; }; -class StoreAPI; +class Store; DownloadResult downloadFile(string url, const DownloadOptions & options); -Path downloadFileCached(ref<StoreAPI> store, const string & url, bool unpack); +Path downloadFileCached(ref<Store> store, const string & url, bool unpack); MakeError(DownloadError, Error) |