blob: 49dfe12fa25b2af71008d596be14931d7662ff09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SIBS_CURL_HPP
#define SIBS_CURL_HPP
#include "Result.hpp"
namespace sibs
{
class curl
{
public:
static Result<bool> downloadFile(const char *url, const char *filepath);
};
}
#endif //SIBS_CURL_HPP
|