Updating Pointer using signals and slots
- by Umesha MS
Hi,
I am very new to the QT; please help me to solve the problem.
I am using thread to perform intensive operation in back ground. Meanwhile I want to update the UI, so I am using SIGNALS and SLOTS. To update UI I emit a signal and update UI.
Let us consider bellow sample code,
struct sample
{
QString name;
QString address;
};…