| 1121 | } |
| 1122 | |
| 1123 | Notebook NoteStore::createNotebook(const Notebook& notebook, QString authenticationToken) |
| 1124 | { |
| 1125 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1126 | QByteArray params = NoteStore_createNotebook_prepareParams(authenticationToken, notebook); |
| 1127 | QByteArray reply = askEvernote(url_, params); |
| 1128 | return NoteStore_createNotebook_readReply(reply); |
| 1129 | } |
| 1130 | |
| 1131 | AsyncResult* NoteStore::createNotebookAsync(const Notebook& notebook, QString authenticationToken) |
| 1132 | { |
no test coverage detected