Table of Contents

 
StartTimer
 

Purpose

Starts a timer ticking

 

Protoype

void CTimerMngr::StartTimer (string str_timer)
 

Parameters

timer the ID of the timer to start
 

Description

This function starts or restarts a timer. When a timer is started it starts off exactly where it was stopped.

 

Use

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

Prev: SetElapsedTime
Next: StopTimer