nesca/progressbardrawer.cpp
2014-08-08 19:02:44 -04:00

16 lines
310 B
C++
Executable File

#include "progressbardrawer.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();
};
};