| 3958 | } |
| 3959 | |
| 3960 | QString NoteStore::getNoteContent(Guid guid, QString authenticationToken) |
| 3961 | { |
| 3962 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3963 | QByteArray params = NoteStore_getNoteContent_prepareParams(authenticationToken, guid); |
| 3964 | QByteArray reply = askEvernote(url_, params); |
| 3965 | return NoteStore_getNoteContent_readReply(reply); |
| 3966 | } |
| 3967 | |
| 3968 | AsyncResult* NoteStore::getNoteContentAsync(Guid guid, QString authenticationToken) |
| 3969 | { |
nothing calls this directly
no test coverage detected