| 5266 | } |
| 5267 | |
| 5268 | QList< NoteVersionId > NoteStore::listNoteVersions(Guid noteGuid, QString authenticationToken) |
| 5269 | { |
| 5270 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5271 | QByteArray params = NoteStore_listNoteVersions_prepareParams(authenticationToken, noteGuid); |
| 5272 | QByteArray reply = askEvernote(url_, params); |
| 5273 | return NoteStore_listNoteVersions_readReply(reply); |
| 5274 | } |
| 5275 | |
| 5276 | AsyncResult* NoteStore::listNoteVersionsAsync(Guid noteGuid, QString authenticationToken) |
| 5277 | { |
no test coverage detected