[[TOC]] = CMillisecondTimer = CMillisecondTimer is a C++ class for timer functions. == Constructors == {{{#!c++ CMillisecondTimer(void); CMillisecondTimer(int nMilliseconds, bool bAutoRepeat = false); }}} ==== Parameters ==== * nMilliseconds - Time interval value in milliseconds * bAutoRepeat - True for a repeating timer. ==== Example ==== {{{#!c++ CMillisecondTimer tmr(3000, true); tmr.Start(); // Start 3 second count while(1) { // ... We can do some processing here if(tmr.IsExpired()) { // Do something every three seconds } } }}} == Member Functions == === Set === {{{#!c++ void Set(int nMilliseconds, bool bAutoRepeat = false); }}} ==== Parameters ==== * nMilliseconds - Timer interval in milliseconds * bAutoRepeat - True for repeating timer. ==== Return Value ==== Function does not return a value. ==== Remarks ==== ==== Example ==== {{{#!c++ }}} === Clear === {{{#!c++ void Clear(void); }}} ==== Parameters ==== Function does not accept any parameters. ==== Return Value ==== Function does not return a value. ==== Remarks ==== ==== Example ==== {{{#!c++ }}}