Qt Forwarding signal/slot connections
问题 Let's say SomeClass has members Object1 and Object2 and there is a connection between Object1 and Object2 like: connect(Object1, signal1, Object2, slot1) After some refactoring Object3 was added to SomeClass and Object2 was moved to be a member of Object3 , but still exist the need for the connection between Object1 and Object2 . The communication between Object1 and Object2 will have to go through Object3 now. This means Object3 needs to be modified, adding a pair of signal/slot just to