| 558 | } |
| 559 | |
| 560 | AsyncResult* NoteStore::getLinkedNotebookSyncStateAsync(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 561 | { |
| 562 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 563 | QByteArray params = NoteStore_getLinkedNotebookSyncState_prepareParams(authenticationToken, linkedNotebook); |
| 564 | return new AsyncResult(url_, params, NoteStore_getLinkedNotebookSyncState_readReplyAsync); |
| 565 | } |
| 566 | |
| 567 | QByteArray NoteStore_getLinkedNotebookSyncChunk_prepareParams(QString authenticationToken, const LinkedNotebook& linkedNotebook, qint32 afterUSN, qint32 maxEntries, bool fullSyncOnly) |
| 568 | { |
nothing calls this directly
no test coverage detected