| 4442 | } |
| 4443 | |
| 4444 | Note NoteStore::createNote(const Note& note, QString authenticationToken) |
| 4445 | { |
| 4446 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4447 | QByteArray params = NoteStore_createNote_prepareParams(authenticationToken, note); |
| 4448 | QByteArray reply = askEvernote(url_, params); |
| 4449 | return NoteStore_createNote_readReply(reply); |
| 4450 | } |
| 4451 | |
| 4452 | AsyncResult* NoteStore::createNoteAsync(const Note& note, QString authenticationToken) |
| 4453 | { |
no test coverage detected