blob: ef4fcdfcf512dd5639e031f984c7a7ccb741e7e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _STEAM_REQUEST_AVATAR_H_
#define _STEAM_REQUEST_AVATAR_H_
class GetAvatarRequest : public HttpRequest
{
public:
GetAvatarRequest(const char *url) :
HttpRequest(REQUEST_GET, url)
{
flags = NLHRF_HTTP11 | NLHRF_NODUMP;
}
};
#endif //_STEAM_REQUEST_AVATAR_H_
|