memgraph/speedy/request.hpp

22 lines
270 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>
2015-10-09 07:24:12 +08:00
#include "http/request.hpp"
namespace sp
{
class Request : public http::Request
{
public:
using http::Request::Request;
std::vector<std::string> params;
2015-10-09 07:24:12 +08:00
};
}
#endif