You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
355 B
C++
21 lines
355 B
C++
#ifndef HTTP_HPP_
|
|
#define HTTP_HPP_
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <algorithm>
|
|
|
|
namespace Exiv2 {
|
|
typedef std::map<std::string,std::string> dict_t;
|
|
typedef dict_t::iterator dict_i;
|
|
|
|
EXIV2API int http(dict_t& request,dict_t& response,std::string& errors);
|
|
|
|
}
|
|
|
|
#if EXV_USE_CURL
|
|
#include <curl/curl.h>
|
|
#endif
|
|
|
|
#endif
|