Hi Every one,
in .h file, i defined a signal like
Qt Code:
  1. signals:
  2. void mySig(arg list);
To copy to clipboard, switch view to plain text mode 
-- assume it in a.h

in .cpp file inside a method i'm emitting the signal like
Qt Code:
  1. emit mySig(arg);
To copy to clipboard, switch view to plain text mode 

in another file, b.h
i've a slot
Qt Code:
  1. void mySlot(arg list same as mySig);
To copy to clipboard, switch view to plain text mode 

and inside b file constructor i'm connecting this mySig to mySlot.

How ll i ckeck that if that signal is emited or not? plz help.