| 6601 | } |
| 6602 | |
| 6603 | QByteArray NoteStore::getResourceAlternateData(Guid guid, QString authenticationToken) |
| 6604 | { |
| 6605 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 6606 | QByteArray params = NoteStore_getResourceAlternateData_prepareParams(authenticationToken, guid); |
| 6607 | QByteArray reply = askEvernote(url_, params); |
| 6608 | return NoteStore_getResourceAlternateData_readReply(reply); |
| 6609 | } |
| 6610 | |
| 6611 | AsyncResult* NoteStore::getResourceAlternateDataAsync(Guid guid, QString authenticationToken) |
| 6612 | { |
nothing calls this directly
no test coverage detected