| 9754 | } |
| 9755 | |
| 9756 | User UserStore::getUser(QString authenticationToken) |
| 9757 | { |
| 9758 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 9759 | QByteArray params = UserStore_getUser_prepareParams(authenticationToken); |
| 9760 | QByteArray reply = askEvernote(url_, params); |
| 9761 | return UserStore_getUser_readReply(reply); |
| 9762 | } |
| 9763 | |
| 9764 | AsyncResult* UserStore::getUserAsync(QString authenticationToken) |
| 9765 | { |
nothing calls this directly
no test coverage detected