forked from organicmaps/organicmaps-tmp
Improved setter to use in one line.
This commit is contained in:
parent
468eeba08e
commit
bdfb608c8d
2 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue