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