mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-26 23:18:28 -06:00
20 lines
438 B
C++
20 lines
438 B
C++
#ifndef __SDLHTTPSERVICE_H__
|
|
#define __SDLHTTPSERVICE_H__
|
|
|
|
#include "inc/basictypes.h"
|
|
#include "game/httpservice.h"
|
|
|
|
namespace wi {
|
|
|
|
class SdlHttpService : public HttpService {
|
|
public:
|
|
// HttpService methods
|
|
virtual HttpRequest *NewRequest(HttpResponseHandler *phandler);
|
|
virtual void SubmitRequest(HttpRequest *preq);
|
|
virtual void ReleaseRequest(HttpRequest *preq);
|
|
};
|
|
|
|
} // namespace wi
|
|
|
|
#endif // __SDLHTTPSERVICE_H__
|