1

次のコードのスロットのトリガーかどうinst1かを知る方法はありますか?inst2

MyClass inst1 ,inst2;

connect (inst1, sigInst1(), this, mySlot());
connect (inst2, sigInst2(), this, mySlot());


void mySlot(){
   // here I want to know if inst1 or inst2 got me into this slot.

}
4

1 に答える 1