Files
whatcd-Ocelot/response.h
2015-01-27 17:36:18 +01:00

12 lines
378 B
C++

#ifndef RESPONSE_H
#define REPSONSE_H
#include <string>
#include "ocelot.h"
const std::string response(const std::string &body, client_opts_t &client_opts);
const std::string response_head(size_t content_length, client_opts_t &client_opts);
const std::string error(const std::string &err, client_opts_t &client_opts);
const std::string warning(const std::string &msg);
#endif