DDraceNetwork Docs
http.h
Go to the documentation of this file.
1#ifndef ENGINE_HTTP_H
2#define ENGINE_HTTP_H
3
4#include "kernel.h"
5#include <memory>
6
8{
9};
10
11class IHttp : public IInterface
12{
14
15public:
16 virtual void Run(std::shared_ptr<IHttpRequest> pRequest) = 0;
17};
18
19#endif
Definition: http.h:8
Definition: http.h:12
virtual void Run(std::shared_ptr< IHttpRequest > pRequest)=0
Definition: kernel.h:10
#define MACRO_INTERFACE(Name)
Definition: kernel.h:25