| 5524 | } |
| 5525 | |
| 5526 | Resource NoteStore::getResource(Guid guid, bool withData, bool withRecognition, bool withAttributes, bool withAlternateData, QString authenticationToken) |
| 5527 | { |
| 5528 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5529 | QByteArray params = NoteStore_getResource_prepareParams(authenticationToken, guid, withData, withRecognition, withAttributes, withAlternateData); |
| 5530 | QByteArray reply = askEvernote(url_, params); |
| 5531 | return NoteStore_getResource_readReply(reply); |
| 5532 | } |
| 5533 | |
| 5534 | AsyncResult* NoteStore::getResourceAsync(Guid guid, bool withData, bool withRecognition, bool withAttributes, bool withAlternateData, QString authenticationToken) |
| 5535 | { |
no test coverage detected