| 1831 | } |
| 1832 | |
| 1833 | Tag NoteStore::createTag(const Tag& tag, QString authenticationToken) |
| 1834 | { |
| 1835 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1836 | QByteArray params = NoteStore_createTag_prepareParams(authenticationToken, tag); |
| 1837 | QByteArray reply = askEvernote(url_, params); |
| 1838 | return NoteStore_createTag_readReply(reply); |
| 1839 | } |
| 1840 | |
| 1841 | AsyncResult* NoteStore::createTagAsync(const Tag& tag, QString authenticationToken) |
| 1842 | { |
no test coverage detected