mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-06-03 15:34:59 -06:00
25 lines
492 B
C++
25 lines
492 B
C++
#ifndef __MACHTTPSERVICE_H__
|
|
#define __MACHTTPSERVICE_H__
|
|
|
|
#include "inc/basictypes.h"
|
|
#include "game/httpservice.h"
|
|
|
|
namespace wi {
|
|
|
|
class MacHttpService : public HttpService {
|
|
public:
|
|
MacHttpService();
|
|
|
|
// HttpService methods
|
|
virtual HttpRequest *NewRequest(HttpResponseHandler *phandler);
|
|
virtual void SubmitRequest(HttpRequest *preq);
|
|
virtual void ReleaseRequest(HttpRequest *preq);
|
|
|
|
private:
|
|
void *delegate_;
|
|
};
|
|
|
|
} // namespace wi
|
|
|
|
#endif // __MACHTTPSERVICE_H__
|