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