| 10076 | } |
| 10077 | |
| 10078 | QString UserStore::getNoteStoreUrl(QString authenticationToken) |
| 10079 | { |
| 10080 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 10081 | QByteArray params = UserStore_getNoteStoreUrl_prepareParams(authenticationToken); |
| 10082 | QByteArray reply = askEvernote(url_, params); |
| 10083 | return UserStore_getNoteStoreUrl_readReply(reply); |
| 10084 | } |
| 10085 | |
| 10086 | AsyncResult* UserStore::getNoteStoreUrlAsync(QString authenticationToken) |
| 10087 | { |
nothing calls this directly
no test coverage detected