00001 #ifndef CPR_CURL_HOLDER_H 00002 #define CPR_CURL_HOLDER_H 00003 00004 #include <memory> 00005 00006 #include <curl/curl.h> 00007 00008 namespace cpr { 00009 00010 struct CurlHolder { 00011 CURL* handle; 00012 struct curl_slist* chunk; 00013 struct curl_httppost* formpost; 00014 char error[CURL_ERROR_SIZE]; 00015 }; 00016 00017 } // namespace cpr 00018 00019 #endif