summaryrefslogtreecommitdiff
path: root/src/client/requestbroker/ImageRequest.h
blob: 58a63ad9bfca8dcfe32695f0dc86b4ccc79aa624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "RequestBroker.h"

class ImageRequest: public RequestBroker::Request
{
public:
	int Width, Height;
	std::string URL;
	int RequestTime;
	void * HTTPContext;
	ImageRequest(std::string url, int width, int height, ListenerHandle listener, int identifier = 0);
	virtual RequestBroker::ProcessResponse Process(RequestBroker & rb);
	virtual ~ImageRequest();
	virtual void Cleanup();
};