| 6375 | } |
| 6376 | |
| 6377 | AsyncResult* NoteStore::getResourceByHashAsync(Guid noteGuid, QByteArray contentHash, bool withData, bool withRecognition, bool withAlternateData, QString authenticationToken) |
| 6378 | { |
| 6379 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 6380 | QByteArray params = NoteStore_getResourceByHash_prepareParams(authenticationToken, noteGuid, contentHash, withData, withRecognition, withAlternateData); |
| 6381 | return new AsyncResult(url_, params, NoteStore_getResourceByHash_readReplyAsync); |
| 6382 | } |
| 6383 | |
| 6384 | QByteArray NoteStore_getResourceRecognition_prepareParams(QString authenticationToken, Guid guid) |
| 6385 | { |
nothing calls this directly
no test coverage detected