14 lines
209 B
C++
14 lines
209 B
C++
#pragma once
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
#include <string>
|
|
|
|
class IDownloader
|
|
{
|
|
public:
|
|
virtual boost::filesystem::path download(const std::string& url) = 0;
|
|
|
|
protected:
|
|
~IDownloader() {}
|
|
};
|