| 82 | } |
| 83 | |
| 84 | int CBackend::Start() |
| 85 | { |
| 86 | qDebug(log) << Q_FUNC_INFO; |
| 87 | int nRet = 0; |
| 88 | nRet = static_cast<int>(OnInit()); |
| 89 | if(nRet < 0) return nRet; |
| 90 | |
| 91 | if(0 == nRet) |
| 92 | QTimer::singleShot(0, this, SLOT(slotTimeOut())); |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | int CBackend::Stop() |
| 97 | { |