/////////////////////////////////////////////////////////////////////////// Delete a timer @return true if a time has been deleted, otherwise false @param name of the timer to delete ///////////////////////////////////////////////////////////////////////////
| 383 | //! @param name of the timer to delete |
| 384 | //////////////////////////////////////////////////////////////////////////////// |
| 385 | inline bool sdkDeleteTimer(StopWatchInterface **timer_interface) { |
| 386 | // printf("sdkDeleteTimer called object %08x\n", (void *)*timer_interface); |
| 387 | if (*timer_interface) { |
| 388 | delete *timer_interface; |
| 389 | *timer_interface = NULL; |
| 390 | } |
| 391 | |
| 392 | return true; |
| 393 | } |
| 394 | |
| 395 | //////////////////////////////////////////////////////////////////////////////// |
| 396 | //! Start the time with name \a name |
no outgoing calls