libLicenseClient/api/IDownloader.h
2018-03-27 23:03:06 +02:00

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() {}
};