| 916 | } |
| 917 | |
| 918 | AsyncResult* NoteStore::getNotebookAsync(Guid guid, QString authenticationToken) |
| 919 | { |
| 920 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 921 | QByteArray params = NoteStore_getNotebook_prepareParams(authenticationToken, guid); |
| 922 | return new AsyncResult(url_, params, NoteStore_getNotebook_readReplyAsync); |
| 923 | } |
| 924 | |
| 925 | QByteArray NoteStore_getDefaultNotebook_prepareParams(QString authenticationToken) |
| 926 | { |
nothing calls this directly
no test coverage detected