Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

23 Answers

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

share|improve this answer
1  
It is strange as Boost already was mentioned in the question. – Mykola Golubyev Apr 22 '09 at 15:27
9  
Well, it's mentioned as an example, but I think it's a critical modern C++ library set. – Harper Shelby Apr 22 '09 at 15:31
6  
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 '09 at 15:40
@tstenner: LOL, true... Boost does get name-dropped plenty. :) But deservedly so IMHO. – j_random_hacker Apr 22 '09 at 16:25
up vote 54 down vote accepted

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

Feel free to expand this list

share|improve this answer
4  
Qt could fit into a lot of these categories, not just UI. – Brian R. Bondy Jul 12 '09 at 18:22
@Brian: I'd say it can fit in all of them except for 3D. – Luke Cardeaux Jul 12 '09 at 18:37
1  
FMOD isn't free for commercial apps. irrKlang is one alternative (for games) – kibibu Jul 31 '09 at 6:19
what do you think about StlSoft? – Gohan Mar 3 '10 at 3:38
I hope we're not expected to use all those libraries all the time. ;) – jalf Sep 24 '10 at 13:13
show 1 more comment

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

share|improve this answer
9  
If that isn't in your C++ system already, get a more modern one. – David Thornley Apr 22 '09 at 15:23
18  
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 '09 at 15:29

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.

share|improve this answer

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

(Should at least get you started)

share|improve this answer
Thanks for the summary – Ryan Emerle Apr 23 '09 at 0:32

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

share|improve this answer
Wow, cool.. thx! – Ryan Emerle Apr 22 '09 at 15:38

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.

share|improve this answer
2  
GTK+ isn't really for C++, but there is gtkmm. – Zifre Apr 22 '09 at 18:47
That's right, I this this. – Klaim Apr 22 '09 at 20:13

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

share|improve this answer

On Windows...

ATL for COM development WTL for user interface

share|improve this answer

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

share|improve this answer

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.

share|improve this answer
7  
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 '09 at 16:26

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.

share|improve this answer

CppUnit for unit testing and test driven development

share|improve this answer

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

share|improve this answer

CGAL is an excellent c++ library for computational geometry

www.cgal.org

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

STL, Boost, and QT makes a great combination.

share|improve this answer
  • Boost
  • GTK -> GTKmm
share|improve this answer

My toolset:

  • STL
  • Boost (mostly scoped_ ptr, shared_ ptr, lexical_ cast, noncopyable, bind and function)
  • Poco (Foundation, Net and XML)
share|improve this answer

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.

share|improve this answer

Besides all the great libraries already listed, I find the combination of xerces for XML (including XSD validation) and xalan for XSLT to be useful (xalan is built on top of xerces). AFAIK neither QT or POCO have XSLT functionality (unless it's been added since I last used them).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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