blob: 28e573d9d1a0e0628efe92926cdd066de847f018 (
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_
|