Quote Originally Posted by stampede View Post
Use signals & slots for this, they are thread safe.
Yes, preferably. But as I said, there are many objects in the worker thread and I would like to avoid connecting each of them individually.
It would be acceptable if all objects in the worker thread inherit from a "Configurable" and thus have their own instance of the config object.
But I don't know if there is a way to make the connections implicitly in the super class so that I don't have to bother making them explicitly
for every object I instantiate.