16 lines
216 B
C++
16 lines
216 B
C++
|
#include "customtimer.h"
|
||
|
|
||
|
#include "observerclientmodel.h"
|
||
|
|
||
|
CustomTimer::CustomTimer(QObject *parent)
|
||
|
: QTimer(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
void CustomTimer::timerEvent ( QTimerEvent * e )
|
||
|
{
|
||
|
|
||
|
TimerSignal();
|
||
|
}
|