memgraph/server/http/httpparsersettings.hpp
2015-08-30 01:12:46 +02:00

23 lines
308 B
C++

#ifndef MEMGRAPH_SERVER_HTTP_HTTPPARSERSETTINGS_HPP
#define MEMGRAPH_SERVER_HTTP_HTTPPARSERSETTINGS_HPP
#include <http_parser.h>
namespace http
{
class HttpParserSettings
{
public:
HttpParserSettings();
operator http_parser_settings*();
private:
http_parser_settings settings;
};
}
#endif