Possible Duplicate:
Is it possible to see definition of Q_SIGNALS, Q_SLOT, SLOT(), SIGNAL() macros? (Qt)
I couldn't find on Google, the declaration of the macros, SIGNAL and SLOT, in Qt.
When we say, connect(button1, SIGNAL(clicked()), this, SLOT(slotButton1()));
I would like to understand, which all kinds of parameters does the highlighted macros accept?
Any link to doc would be appreciated.
The link I got through Neil's comment below says: #define SLOT(a) "1"#a
and what does a represent here? It is not shown in that link.