| 2994 | } |
| 2995 | |
| 2996 | AsyncResult* NoteStore::findNoteOffsetAsync(const NoteFilter& filter, Guid guid, QString authenticationToken) |
| 2997 | { |
| 2998 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 2999 | QByteArray params = NoteStore_findNoteOffset_prepareParams(authenticationToken, filter, guid); |
| 3000 | return new AsyncResult(url_, params, NoteStore_findNoteOffset_readReplyAsync); |
| 3001 | } |
| 3002 | |
| 3003 | QByteArray NoteStore_findNotesMetadata_prepareParams(QString authenticationToken, const NoteFilter& filter, qint32 offset, qint32 maxNotes, const NotesMetadataResultSpec& resultSpec) |
| 3004 | { |
nothing calls this directly
no test coverage detected