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.
22 lines
348 B
C++
22 lines
348 B
C++
#ifndef HTTP_HPP_
|
|
#define HTTP_HPP_
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include <algorithm>
|
|
|
|
#include "datasets.hpp"
|
|
|
|
namespace Exiv2 {
|
|
EXIV2API int http(Exiv2::Dictionary& request,Exiv2::Dictionary& response,std::string& errors);
|
|
}
|
|
|
|
#ifndef EXV_USE_CURL
|
|
#define EXV_USE_CURL 0
|
|
#endif
|
|
#if EXV_USE_CURL == 1
|
|
#include <curl/curl.h>
|
|
#endif
|
|
|
|
#endif
|