memgraph/speedy/request.hpp

26 lines
377 B
C++
Raw Normal View History

2015-10-09 07:24:12 +08:00
#ifndef MEMGRAPH_SPEEDY_REQUEST_HPP
#define MEMGRAPH_SPEEDY_REQUEST_HPP
#include <vector>
#include "rapidjson/document.h"
2015-10-09 07:24:12 +08:00
#include "http/request.hpp"
namespace sp
{
class Request : public http::Request
{
public:
using http::Request::Request;
// http://rapidjson.org/md_doc_dom.html
rapidjson::Document json;
std::vector<std::string> params;
2015-10-09 07:24:12 +08:00
};
}
#endif