| 183 | } |
| 184 | |
| 185 | NNTPFetchArticleOperation * NNTPAsyncSession::fetchArticleOperation(String * groupName, unsigned int index) |
| 186 | { |
| 187 | NNTPFetchArticleOperation * op = new NNTPFetchArticleOperation(); |
| 188 | op->setSession(this); |
| 189 | op->setGroupName(groupName); |
| 190 | op->setMessageIndex(index); |
| 191 | op->autorelease(); |
| 192 | return op; |
| 193 | } |
| 194 | |
| 195 | NNTPFetchArticleOperation * NNTPAsyncSession::fetchArticleByMessageIDOperation(String *messageID) |
| 196 | { |
nothing calls this directly
no test coverage detected