tags:

views:

4531

answers:

5

I'm looking at starting a project in C++ using the Qt 4 framework (a cross-platform GUI is required). I've heard great things about the Boost libraries from friends and online. I've started reading up on both and wanted to ask a cursory question before I got too deep: Are these two development "systems" mutually exclusive?

My initial searching and reading shows some overlap in the signal handling, custom build systems, and other low-level primitives.

Does it make sense to use them both in the same project?

+11  A: 

Yes it makes perfect sense. I would generally prefer using the boost/stdlib functions where possible rather than their QT alternatives.

It makes the code easier to port to the next framework.
It makes is easier for new non-QT programmers to get upto speed.
Boost has some great functionality and is getting more all the time.

note: strings to/from widgets are probably the main exception - inside the GUI I would use QT strings to save confusing casts everywhere.

Martin Beckett
Qt also has great functionality and also is getting more all the time. Qt has great (better) documentation compared to Boost's (based on my experience of using both). One could make an argument that using Boost makes it harder for non-Boost programmers, as well.
ShaChris23
+4  A: 

We (Last.fm) use them both together, though we only just started to do so, and so haven't a good deal of experience yet. So far everything is fine though :)

Max Howell
+4  A: 

Especially since you are going cross-platform, you should have a nicely layered architecture, with the business logic and data access as removed as possible from the GUI. In this case, it would make sense to use Boost when writing the backend of your application, and only jump to QT for the frontend, with the mandatory pile of casts done in the glue.

If your "engine" is separate from your GUI choice, you will be able to swap out QT for something else in the future (native libraries perhaps) with minimal effort.

Tiberiu Ana
+2  A: 

There are potential problems with using Boost.Signals alongside QT. These are documented in the Boost.Signals FAQ.

Daniel James
+7  A: 

This paper compares signal slots mechanism in QT and Boost::Signal very decently. It is a must read for those who are a bit curious of this mix.

Comptrol
Good paper. Thanks for the link.
dwj