diff options
author | lns <matzeton@googlemail.com> | 2022-05-06 11:38:26 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-05-06 11:38:26 +0200 |
commit | 3b4947b8b4a5c6ec9421ade5cc759ca3b947bd67 (patch) | |
tree | 8ac0c497f65dee15cf8d0796acc640d0d0e27092 /GithubAPI.hpp | |
parent | 5e7d06b220d21e03d01334c9f445a8407916bb0d (diff) |
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'GithubAPI.hpp')
-rw-r--r-- | GithubAPI.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GithubAPI.hpp b/GithubAPI.hpp index 59faa82..1162e77 100644 --- a/GithubAPI.hpp +++ b/GithubAPI.hpp @@ -1,10 +1,11 @@ #ifndef GITHUBAPI_H #define GITHUBAPI_H 1 -#include <curl/curl.h> #include <string> #include <vector> +typedef void CURL; + class GithubAPI { public: GithubAPI(std::string username); @@ -12,6 +13,7 @@ public: bool DownloadAvatar(); size_t GetAvatarBuffer(std::vector<unsigned char> &avatar_buffer); + bool AvatarToFile(std::string filename); std::string GetUsername() { return username; } private: |