1 #include "lib/httpclient.hpp"
2 
post(const std::string & url,const lib::headers & headers,lib::callback<std::string> & callback) const3 void lib::http_client::post(const std::string &url, const lib::headers &headers,
4 	lib::callback<std::string> &callback) const
5 {
6 	post(url, std::string(), headers, callback);
7 }
8