From: Vladimir Prus (ghost_at_[hidden])
Date: 2008-01-01 17:13:12


j.c. wrote:

> Was quite easy actually. :-)

It should be noted that in general, porting Qt signals/slots
to Boost is not possible:

1. Qt signals/slots are dynamic, so declaration of either signal
or slot need not be present in the static type of objects being
connected.

2. Boost does not support inter-thread signals.

(I'm not making any statement which model is best, just pointing
out the differences)

- Volodya