| 6246 | } |
| 6247 | |
| 6248 | AsyncResult* NoteStore::getResourceDataAsync(Guid guid, QString authenticationToken) |
| 6249 | { |
| 6250 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 6251 | QByteArray params = NoteStore_getResourceData_prepareParams(authenticationToken, guid); |
| 6252 | return new AsyncResult(url_, params, NoteStore_getResourceData_readReplyAsync); |
| 6253 | } |
| 6254 | |
| 6255 | QByteArray NoteStore_getResourceByHash_prepareParams(QString authenticationToken, Guid noteGuid, QByteArray contentHash, bool withData, bool withRecognition, bool withAlternateData) |
| 6256 | { |
nothing calls this directly
no test coverage detected