vote up 27 vote down star
46

I've been out of the C++ game for about 10 years and I want to get back in and start on a commercial app. What libraries are in use these days?

  • User interface (e.g, wxWidgets, Qt)
  • Database
  • General purpose (e.g. Boost, Loki, STL)
  • Threading
  • Testing
  • Network/sockets

I looking to be cross-platform compatible (as much as possible out-of-the-box).

What libraries to do you rely on? What features do they provide that make them "indispensable"?

See my answer below for a summary.

flag
This might benefit from being made community wiki. – Don Wakefield Apr 22 at 16:49
I agree.. it is done. – Ryan Emerle Apr 23 at 0:34

22 Answers

vote up 30 vote down

Qt is a great addition with the new LGPL licensing model which allows it to be used in commercial software free of charge.

It's the perfect place to start with a new cross platform project.

link|flag
vote up 34 vote down

STL: Standard Template Library. Don't leave home without it.

link|flag
7  
If that isn't in your C++ system already, get a more modern one. – David Thornley Apr 22 at 15:23
14  
True, but there's a difference between STL being available, and STL being part of your toolbox (as in something you actively use) – jalf Apr 22 at 15:29
vote up 46 vote down

Boost is a huge one (well, technically a bunch of big ones).

link|flag
It is strange as Boost already was mentioned in the question. – Mykola Golubyev Apr 22 at 15:27
7  
Well, it's mentioned as an example, but I think it's a critical modern C++ library set. – Harper Shelby Apr 22 at 15:31
4  
And even if it wasn't answered in the question, I barely see any C++ question that aren't answered by saying "Boost". – tstenner Apr 22 at 15:40
@tstenner: LOL, true... Boost does get name-dropped plenty. :) But deservedly so IMHO. – j_random_hacker Apr 22 at 16:25
vote up 6 vote down

My all time favourite: Qt. It is cross-platform, provides fantastic features for UI, multi-threading, Database and general purpose functionalities.

link|flag
vote up 4 vote down

Qt is quite simply excellent. Its cross platform, and has modules for pretty much all the things you would want to do in an application: networking, database, ui, xml and a bunch of other stuff.

link|flag
vote up 4 vote down

CppUnit for unit testing and test driven development

link|flag
vote up 10 vote down

Adaptive Communication Environment (ACE) is a cross-platform OO network programming toolkit written in C++. Wikipedia has a good description.

link|flag
Wow, cool.. thx! – Ryan Emerle Apr 22 at 15:38
vote up 4 vote down

http://loki-lib.sourceforge.net/ might also be good addition.

It's another template library, which introduces typelists, and implementations for various design patterns.

I never used it, but I read Alexandrescu's book to get a better understanding of templates.

link|flag
4  
Loki's ScopeGuard will change your life. Seriously. You'll be stronger, faster, and more attractive to the opposite sex. – j_random_hacker Apr 22 at 16:26
vote up 3 vote down

familiarity with stl and boost are essential to any serious c++ developer. I've heard good things about Qt, but didn't know it was free for commercial use until the post above. Thanks Brian R. Bondy.

link|flag
vote up 4 vote down

Personally, Boost and STL are must haves. I would also take a look Poco.

link|flag
vote up 2 vote down

STL, Boost, and QT makes a great combination.

link|flag
vote up 8 vote down

Google Mock and Google Test for Mock Objects in C++ and Unit Testing.

link|flag
vote up 8 vote down

On Windows...

ATL for COM development WTL for user interface

link|flag
vote up 16 vote down

Sorry for repeating some of the stuff already written, but:

(Should at least get you started)

link|flag
Thanks for the summary – Ryan Emerle Apr 23 at 0:32
vote up 6 vote down

The STL (Standard Template Library) should be provided by all decent C++ compilers. If you don't know it, you should. If you think you don't need it, it's fine if you have good reasons, but you have to know it first anyway.

Boost ( http://www.boost.org ) is a big set of libraries that is complementary to the STL. Most of the STL additions are first provided in Boost before getting to the official standard library status. Most of the time, you find in Boost what you need when it's related to general algorithms/structures. The main exception is GUI lib.

A tiny alternative to Boost is POCO ( http://pocoproject.org/ ). It provides some of the most essential libraries that are already in Boost, but implemented in another way, easier to read an learn if you're not yet a C++ specialist. It's not as "complete" (or "with as much variety" should I say) than Boost, but it's sometime interesting. Learn a bit about it to know your choices.

For GUI, as other suggested, in C++, QT might be the more useful GUI (and other tools) library at the moment. Alternatives are wxWidgets and GTK (gtkmm) for the more known.

All those libraries are cross-platform.

link|flag
1  
GTK+ isn't really for C++, but there is gtkmm. – Zifre Apr 22 at 18:47
That's right, I this this. – Klaim Apr 22 at 20:13
vote up 22 vote down check

Cross-platform libraries that are free for commercial (or non-commercial) applications

Feel free to expand this list

link|flag
2  
Qt could fit into a lot of these categories, not just UI. – Brian R. Bondy Jul 12 at 18:22
@Brian: I'd say it can fit in all of them except for 3D. – Lucas Cardoso Jul 12 at 18:37
FMOD isn't free for commercial apps. irrKlang is one alternative (for games) – kibibu Jul 31 at 6:19
vote up 2 vote down
  • Boost
  • GTK -> GTKmm
link|flag
vote up 1 vote down

Ogre, SDL, ICE

link|flag
vote up 3 vote down

CGAL is an excellent c++ library for computational geometry

www.cgal.org

link|flag
vote up 1 vote down

My toolset:

  • STL
  • Boost (mostly scoped_ ptr, shared_ ptr, lexical_ cast, noncopyable, bind and function)
  • Poco (Foundation, Net and XML)
link|flag
vote up 3 vote down

I agree with the general consensus that boost, STL and QT are probably at the top of the general list.

I often need a decent cross platform http library and I've always had good luck with libCurl. I believe QT has some of this functionality as well, but if QT doesn't cut it for some reason, definitely have a look at libCurl.

link|flag
vote up 0 vote down

In regards to "Cross-platform libraries that are free for commercial (or non-commercial) applications", POCO should be added to Networking, Threading and Logging categories.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.