| 173 | } |
| 174 | |
| 175 | NNTPFetchHeaderOperation * NNTPAsyncSession::fetchHeaderOperation(String * groupName, unsigned int index) |
| 176 | { |
| 177 | NNTPFetchHeaderOperation * op = new NNTPFetchHeaderOperation(); |
| 178 | op->setSession(this); |
| 179 | op->setGroupName(groupName); |
| 180 | op->setMessageIndex(index); |
| 181 | op->autorelease(); |
| 182 | return op; |
| 183 | } |
| 184 | |
| 185 | NNTPFetchArticleOperation * NNTPAsyncSession::fetchArticleOperation(String * groupName, unsigned int index) |
| 186 | { |
nothing calls this directly
no test coverage detected