mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Add GetUrl method to DownloadTask
This commit is contained in:
@ -53,6 +53,7 @@ namespace ASC
|
||||
|
||||
public:
|
||||
virtual std::wstring GetPath() = 0;
|
||||
virtual std::wstring GetUrl() = 0;
|
||||
virtual DownloadStatus GetStatus() = 0;
|
||||
};
|
||||
|
||||
|
||||
@ -77,6 +77,10 @@ namespace ASC
|
||||
{
|
||||
return Status;
|
||||
}
|
||||
std::wstring GetUrl()
|
||||
{
|
||||
return Url;
|
||||
}
|
||||
};
|
||||
|
||||
class CDownloadManager_private
|
||||
|
||||
Reference in New Issue
Block a user