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