| 179 | } |
| 180 | |
| 181 | POPFetchHeaderOperation * POPAsyncSession::fetchHeaderOperation(unsigned int index) |
| 182 | { |
| 183 | POPFetchHeaderOperation * op = new POPFetchHeaderOperation(); |
| 184 | op->setSession(this); |
| 185 | op->setMessageIndex(index); |
| 186 | op->autorelease(); |
| 187 | return op; |
| 188 | } |
| 189 | |
| 190 | POPFetchMessageOperation * POPAsyncSession::fetchMessageOperation(unsigned int index) |
| 191 | { |
nothing calls this directly
no test coverage detected