Skip to content

Commit b367eec

Browse files
committed
Update ProjectDownloaderStub
1 parent 434d793 commit b367eec

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/internal/projectdownloaderstub.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ void ProjectDownloaderStub::cancel()
2222
{
2323
}
2424

25+
void ProjectDownloaderStub::setDownloadProgressCallback(const std::function<void(unsigned int, unsigned int)> &)
26+
{
27+
}
28+
2529
const std::string &ProjectDownloaderStub::json() const
2630
{
2731
static const std::string empty;

src/internal/projectdownloaderstub.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class ProjectDownloaderStub : public IProjectDownloader
1616
bool downloadAssets(const std::vector<std::string> &) override;
1717
void cancel() override;
1818

19+
virtual void setDownloadProgressCallback(const std::function<void(unsigned int, unsigned int)> &) override;
20+
1921
const std::string &json() const override;
2022
const std::vector<std::string> &assets() const override;
2123
unsigned int downloadedAssetCount() const override;

0 commit comments

Comments
 (0)