exiv2/include/exiv2/http.hpp
Robin Mills 24cb148e11 #1004. Reviewed all include directives in src/*.cpp and samples/*.cpp
fixed svn_version.sh again!
change to test/build-test.py for MacOS-X/Xcode 6.
2015-01-06 12:40:31 +00:00

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