| 66 | } |
| 67 | |
| 68 | void DsTimer::SetCallback(CALLBACL_FUNC f) |
| 69 | { |
| 70 | _call = f; |
| 71 | |
| 72 | if(!_binded){ |
| 73 | _binded = true; |
| 74 | connect(&_timer, SIGNAL(timeout()), this, SLOT(on_timeout())); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void DsTimer::Start(int millsec) |
| 79 | { |
no outgoing calls
no test coverage detected