| 7667 | } |
| 7668 | |
| 7669 | LinkedNotebook NoteStore::createLinkedNotebook(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 7670 | { |
| 7671 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 7672 | QByteArray params = NoteStore_createLinkedNotebook_prepareParams(authenticationToken, linkedNotebook); |
| 7673 | QByteArray reply = askEvernote(url_, params); |
| 7674 | return NoteStore_createLinkedNotebook_readReply(reply); |
| 7675 | } |
| 7676 | |
| 7677 | AsyncResult* NoteStore::createLinkedNotebookAsync(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 7678 | { |
nothing calls this directly
no test coverage detected