| 188 | } |
| 189 | |
| 190 | POPFetchMessageOperation * POPAsyncSession::fetchMessageOperation(unsigned int index) |
| 191 | { |
| 192 | POPFetchMessageOperation * op = new POPFetchMessageOperation(); |
| 193 | op->setSession(this); |
| 194 | op->setMessageIndex(index); |
| 195 | op->autorelease(); |
| 196 | return op; |
| 197 | } |
| 198 | |
| 199 | POPOperation * POPAsyncSession::deleteMessagesOperation(IndexSet * indexes) |
| 200 | { |
nothing calls this directly
no test coverage detected