ddnet/src/engine/http.h

20 lines
251 B
C
Raw Normal View History

2024-01-07 14:48:48 +00:00
#ifndef ENGINE_HTTP_H
#define ENGINE_HTTP_H
2023-12-18 19:01:26 +00:00
#include "kernel.h"
2024-03-25 05:46:00 +00:00
#include <memory>
2023-12-18 19:01:26 +00:00
2023-12-18 21:53:23 +00:00
class IHttpRequest
{
};
2023-12-18 19:01:26 +00:00
class IHttp : public IInterface
{
2023-12-18 21:53:23 +00:00
MACRO_INTERFACE("http")
2023-12-18 19:01:26 +00:00
public:
2023-12-18 21:53:23 +00:00
virtual void Run(std::shared_ptr<IHttpRequest> pRequest) = 0;
2023-12-18 19:01:26 +00:00
};
#endif