| 550 | } |
| 551 | |
| 552 | SyncState NoteStore::getLinkedNotebookSyncState(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 553 | { |
| 554 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 555 | QByteArray params = NoteStore_getLinkedNotebookSyncState_prepareParams(authenticationToken, linkedNotebook); |
| 556 | QByteArray reply = askEvernote(url_, params); |
| 557 | return NoteStore_getLinkedNotebookSyncState_readReply(reply); |
| 558 | } |
| 559 | |
| 560 | AsyncResult* NoteStore::getLinkedNotebookSyncStateAsync(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 561 | { |
no test coverage detected