Reputation: 1720
Some QThread * worker
has created QObject *tmp = new QObject()
. How can another thread identify the worker
given tmp
? Is there something like:
QThread *answer = tmp->getThreadThatCreatedThisObject();
Upvotes: 0
Views: 188
Reputation: 7777
You are probably looking for QObject::thread()
:
QThread* answer = tmp->thread();
Upvotes: 2