Brief description of class still missing. More...
#include <LinkTestTimer.h>
Public Member Functions | |
| virtual bool | exec () |
| LinkTestTimer (LinkBuffer *buffer) | |
Brief description of class still missing.
Full description of class still missing
| LinkTestTimer::LinkTestTimer | ( | LinkBuffer * | buffer | ) |
Description of constructor still missing
References GpCoreTools::Timer::setInterval().
: Timer() { _buffer=buffer; setInterval(60000); }
| bool LinkTestTimer::exec | ( | ) | [virtual] |
Performs action after timeout. If it returns true the timer is not single shot, i.e. deleted right after exec().
Implements GpCoreTools::Timer.
References LinkBuffer::startTest().
{
_buffer->startTest();
return false;
}