ddnet/src/engine/http.h

19 lines
219 B
C
Raw Normal View History

2023-12-18 19:01:26 +00:00
#ifndef HTTP_H
#define HTTP_H
#include "kernel.h"
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