| 3361 | } |
| 3362 | |
| 3363 | Note NoteStore::getNote(Guid guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 3364 | { |
| 3365 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3366 | QByteArray params = NoteStore_getNote_prepareParams(authenticationToken, guid, withContent, withResourcesData, withResourcesRecognition, withResourcesAlternateData); |
| 3367 | QByteArray reply = askEvernote(url_, params); |
| 3368 | return NoteStore_getNote_readReply(reply); |
| 3369 | } |
| 3370 | |
| 3371 | AsyncResult* NoteStore::getNoteAsync(Guid guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 3372 | { |
no test coverage detected