DDraceNetwork Documentation
Loading...
Searching...
No Matches
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
6#include <memory>
7
9{
10};
11
12class IHttp : public IInterface
13{
15
16public:
17 virtual void Run(std::shared_ptr<IHttpRequest> pRequest) = 0;
18};
19
20#endif
Definition http.h:9
Definition http.h:13
virtual void Run(std::shared_ptr< IHttpRequest > pRequest)=0
IInterface()
Definition kernel.h:19
#define MACRO_INTERFACE(Name)
Definition kernel.h:25