Improved setter to use in one line.

This commit is contained in:
Alex Zolotarev 2016-01-09 11:42:55 +03:00 committed by Sergey Yershov
parent 468eeba08e
commit bdfb608c8d
2 changed files with 3 additions and 2 deletions

View file

@ -257,10 +257,11 @@ OsmOAuth::Response OsmOAuth::DirectRequest(string const & method, bool api) cons
return Response(static_cast<ResponseCode>(request.error_code()), request.server_response());
}
void OsmOAuth::SetToken(ClientToken const & token)
OsmOAuth & OsmOAuth::SetToken(ClientToken const & token)
{
m_token.m_key = token.m_key;
m_token.m_secret = token.m_secret;
return *this;
}
OsmOAuth::AuthResult OsmOAuth::FetchAccessToken(SessionID const & sid)

View file

@ -68,7 +68,7 @@ public:
/// @name Methods for using a token stored in this class. Obviously not thread-safe.
//@{
void SetToken(ClientToken const & token);
OsmOAuth & SetToken(ClientToken const & token);
ClientToken const & GetToken() const { return m_token; }
bool IsAuthorized() const { return m_token.IsValid(); }
AuthResult AuthorizePassword(string const & login, string const & password);