I know my question is similar to this QUESTION but i cant find solution from there. Can anyone give a breif answer to my problem?
I have a function like this
void myWidget::showGPS()
{
/* This function will read data from text file
that will continuouly change over time
then process its data */
}
I want to call this function every 15-20 seconds without using Quick-and-dirty method of setting boolean to true .
Is there any way to implement this using QT signal and slot with timer or something like that
See Question&Answers more detail:os