mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
23 lines
384 B
C++
23 lines
384 B
C++
#include "DrawerTh_GridQoSScanner.h"
|
|
#include "STh.h"
|
|
|
|
void DrawerTh_GridQoSScanner::doEmitAddLine()
|
|
{
|
|
emit dtGridQoS->sAddLine();
|
|
};
|
|
|
|
void DrawerTh_GridQoSScanner::run()
|
|
{
|
|
while(QoSScanFlag)
|
|
{
|
|
if(stt->isRunning() == true)
|
|
{
|
|
if(widgetIsHidden == false && tray->isVisible() == false)
|
|
{
|
|
++QoSStep;
|
|
emit dtGridQoS->doEmitAddLine();
|
|
};
|
|
};
|
|
msleep(2000);
|
|
};
|
|
}; |