次のコードのスロットのトリガーかどう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.
}
次のコードのスロットのトリガーかどう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.
}