| 450 | } |
| 451 | |
| 452 | BOOL SApplication::SetMsgLoopFactory(IMsgLoopFactory *pMsgLoopFac) |
| 453 | { |
| 454 | if(m_pMsgLoop->IsRunning()) return FALSE; |
| 455 | m_msgLoopFactory->DestoryMsgLoop(m_pMsgLoop); |
| 456 | m_msgLoopFactory = pMsgLoopFac; |
| 457 | m_pMsgLoop = m_msgLoopFactory->CreateMsgLoop(); |
| 458 | return TRUE; |
| 459 | } |
| 460 | |
| 461 | IMsgLoopFactory * SApplication::GetMsgLoopFactory() |
| 462 | { |
nothing calls this directly
no test coverage detected