1#ifndef ENGINE_HTTP_H
2#define ENGINE_HTTP_H
3
4#include "kernel.h"
5#include <memory>
6
7class IHttpRequest
8{
9};
10
11class IHttp : public IInterface
12{
13 MACRO_INTERFACE("http")
14
15public:
16 virtual void Run(std::shared_ptr<IHttpRequest> pRequest) = 0;
17};
18
19#endif
20