Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jesustorresdev/3ebb0168653ff832eb448427a433eef7 to your computer and use it in GitHub Desktop.
Save jesustorresdev/3ebb0168653ff832eb448427a433eef7 to your computer and use it in GitHub Desktop.
class MyThread : public QThread
{
Q_OBJECT
protected:
void run();
};
void MyThread::run()
{
// Aquí el código a ejecutar en el hilo...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment