memgraph/speedy/request.hpp
2015-10-11 20:59:27 +02:00

22 lines
270 B
C++

#ifndef MEMGRAPH_SPEEDY_REQUEST_HPP
#define MEMGRAPH_SPEEDY_REQUEST_HPP
#include <vector>
#include "http/request.hpp"
namespace sp
{
class Request : public http::Request
{
public:
using http::Request::Request;
std::vector<std::string> params;
};
}
#endif