Blame include/exiv2/http.hpp

Packit Service 21b5d1
#ifndef HTTP_HPP_
Packit Service 21b5d1
#define HTTP_HPP_
Packit Service 21b5d1
Packit Service 21b5d1
#include "exiv2lib_export.h"
Packit Service 21b5d1
Packit Service 21b5d1
#include "datasets.hpp"
Packit Service 21b5d1
Packit Service 21b5d1
#include <string>
Packit Service 21b5d1
Packit Service 21b5d1
Packit Service 21b5d1
namespace Exiv2 {
Packit Service 21b5d1
    /*!
Packit Service 21b5d1
     @brief execute an HTTP request
Packit Service 21b5d1
     @param request -  a Dictionary of headers to send to server
Packit Service 21b5d1
     @param response - a Dictionary of response headers (dictionary is filled by the response)
Packit Service 21b5d1
     @param errors   - a String with an error
Packit Service 21b5d1
     @return Server response 200 = OK, 404 = Not Found etc...
Packit Service 21b5d1
    */
Packit Service 21b5d1
    EXIV2API int http(Exiv2::Dictionary& request,Exiv2::Dictionary& response,std::string& errors);
Packit Service 21b5d1
}
Packit Service 21b5d1
Packit Service 21b5d1
#endif