nesca/progressbardrawer.cpp
2014-10-26 18:05:51 +03:00

18 lines
320 B
C++

#include "progressbardrawer.h"
#include "externData.h"
void ProgressbarDrawer::update()
{
emit pbTh->upd();
};
int nesca_3::perc = 0;
void ProgressbarDrawer::run()
{
while(globalScanFlag)
{
msleep(1000);
nesca_3::perc = (unsigned long)100*indexIP/(gTargetsOverall == 0 ? 1 : gTargetsOverall);
update();
};
};