Add GetUrl method to DownloadTask

This commit is contained in:
Oleg.Korshul
2023-07-15 22:59:27 +05:00
parent 2a84964f3c
commit 1dba84f407
2 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,7 @@ namespace ASC
public:
virtual std::wstring GetPath() = 0;
virtual std::wstring GetUrl() = 0;
virtual DownloadStatus GetStatus() = 0;
};

View File

@ -77,6 +77,10 @@ namespace ASC
{
return Status;
}
std::wstring GetUrl()
{
return Url;
}
};
class CDownloadManager_private