| 5403 | } |
| 5404 | |
| 5405 | AsyncResult* NoteStore::getNoteVersionAsync(Guid noteGuid, qint32 updateSequenceNum, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 5406 | { |
| 5407 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5408 | QByteArray params = NoteStore_getNoteVersion_prepareParams(authenticationToken, noteGuid, updateSequenceNum, withResourcesData, withResourcesRecognition, withResourcesAlternateData); |
| 5409 | return new AsyncResult(url_, params, NoteStore_getNoteVersion_readReplyAsync); |
| 5410 | } |
| 5411 | |
| 5412 | QByteArray NoteStore_getResource_prepareParams(QString authenticationToken, Guid guid, bool withData, bool withRecognition, bool withAttributes, bool withAlternateData) |
| 5413 | { |
nothing calls this directly
no test coverage detected