| 8256 | } |
| 8257 | |
| 8258 | SharedNotebook NoteStore::getSharedNotebookByAuth(QString authenticationToken) |
| 8259 | { |
| 8260 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8261 | QByteArray params = NoteStore_getSharedNotebookByAuth_prepareParams(authenticationToken); |
| 8262 | QByteArray reply = askEvernote(url_, params); |
| 8263 | return NoteStore_getSharedNotebookByAuth_readReply(reply); |
| 8264 | } |
| 8265 | |
| 8266 | AsyncResult* NoteStore::getSharedNotebookByAuthAsync(QString authenticationToken) |
| 8267 | { |
nothing calls this directly
no test coverage detected