| 1013 | } |
| 1014 | |
| 1015 | Notebook NoteStore::getDefaultNotebook(QString authenticationToken) |
| 1016 | { |
| 1017 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1018 | QByteArray params = NoteStore_getDefaultNotebook_prepareParams(authenticationToken); |
| 1019 | QByteArray reply = askEvernote(url_, params); |
| 1020 | return NoteStore_getDefaultNotebook_readReply(reply); |
| 1021 | } |
| 1022 | |
| 1023 | AsyncResult* NoteStore::getDefaultNotebookAsync(QString authenticationToken) |
| 1024 | { |
nothing calls this directly
no test coverage detected