mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
20 lines
251 B
C++
20 lines
251 B
C++
#ifndef ENGINE_HTTP_H
|
|
#define ENGINE_HTTP_H
|
|
|
|
#include "kernel.h"
|
|
#include <memory>
|
|
|
|
class IHttpRequest
|
|
{
|
|
};
|
|
|
|
class IHttp : public IInterface
|
|
{
|
|
MACRO_INTERFACE("http")
|
|
|
|
public:
|
|
virtual void Run(std::shared_ptr<IHttpRequest> pRequest) = 0;
|
|
};
|
|
|
|
#endif
|