Table of Contents

 
StopTimer
 

Purpose

Stops a timer from ticking

 

Protoype

void CTimerMngr::StopTimer (string str_timer)
 

Parameters

timer the ID of the timer to stop
 

Description

This function stops a timer. When a timer is stopped it is frozen, not reset to zero.

 

Use

CTimerMngr timer;
timer.StopTimer("my_timer");
 

Prev: StartTimer