I considered it for one of my projects. One aspect that might bother you, depending on the project is the use of Qt Designer. The Qt-Designer
creates signal-slots underneath for its GUI connections. So, if you happen to use the designer, you will end up with projects having both signals-slots
and boost::signals
. There are some issues with using them together f.e. see this blog. Though its possible for them to work together, i would refrain from mixing the two approaches.
But the biggest problem i faced was that boost::signals
are not thread-safe whereas Qt's signal-slot
is! So it was easy decision for me as my project was multithreaded.
You can get the relative merits and de-merits of the approach taken by boost and Qt from Page-11
of this PDF.
HTH