| 1355 | } |
| 1356 | |
| 1357 | qint32 NoteStore::expungeNotebook(Guid guid, QString authenticationToken) |
| 1358 | { |
| 1359 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1360 | QByteArray params = NoteStore_expungeNotebook_prepareParams(authenticationToken, guid); |
| 1361 | QByteArray reply = askEvernote(url_, params); |
| 1362 | return NoteStore_expungeNotebook_readReply(reply); |
| 1363 | } |
| 1364 | |
| 1365 | AsyncResult* NoteStore::expungeNotebookAsync(Guid guid, QString authenticationToken) |
| 1366 | { |
no test coverage detected