| 4325 | } |
| 4326 | |
| 4327 | QStringList NoteStore::getNoteTagNames(Guid guid, QString authenticationToken) |
| 4328 | { |
| 4329 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4330 | QByteArray params = NoteStore_getNoteTagNames_prepareParams(authenticationToken, guid); |
| 4331 | QByteArray reply = askEvernote(url_, params); |
| 4332 | return NoteStore_getNoteTagNames_readReply(reply); |
| 4333 | } |
| 4334 | |
| 4335 | AsyncResult* NoteStore::getNoteTagNamesAsync(Guid guid, QString authenticationToken) |
| 4336 | { |
nothing calls this directly
no test coverage detected