vote up 12 vote down star
15

Everyone should know about boost. What are other helpful libraries for C++? If you need to mention specifics (like libcurl, freeimage) please note what they are specific to (web protocol, image loading).

flag
6  
Close to a dupe of stackoverflow.com/questions/777764/… – JaredPar Apr 25 at 15:28

14 Answers

vote up 13 vote down

SOCI, http://soci.sourceforge.net/

SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code, staying entirely within the Standard C++.

Example code:

string name;
int salary;
Person p;

sql << "select name, salary from persons where id = " << id,
       into(name), into(salary);

// Object relational mapping
sql << "select first_name, last_name, date_of_birth "
       "from persons where id = " << id,
       into(p);

// Integration with STL
Rowset<string> rs = (sql.prepare << "select name from persons");
copy(rs.begin(), rs.end(), ostream_iterator<string>(cout, "\n"));
link|flag
vote up 10 vote down

Qt -- even if you're not using the GUI capabilities, it's wealth of classes (see here) is stunning.

link|flag
vote up 5 vote down

POCO C++ Librarie

Features

threads, thread synchronization and advanced abstractions for multithreaded programming streams and filesystem access shared libraries and class loading powerful logging and error reporting security and encryption network programming (TCP/IP sockets, HTTP client and HTTP server, FTP, SMTP, POP3, etc.) XML parsing (SAX2 and DOM) and generation configuration file and options handling SQL database access (ODBC, MySQL, SQLite)

link|flag
vote up 5 vote down

Crypto++ - encryption library

Ogre3D - 3D graphics

OIS - cross platform input

PixelToaster - 2D software rendering

Anti-Grain Geometry - High quality rendering engine

link|flag
vote up 3 vote down

CGAL - Computer Graphics Algorithms Library

Also see this introduction to CGAL from Google Tech Talks on YouTube.

link|flag
vote up 2 vote down

expat

http://expat.sourceforge.net

http://en.wikipedia.org/wiki/Expat_(XML)

An awesome xml parser :)

link|flag
vote up 2 vote down

CxxTest for unit testing.

link|flag
vote up 1 vote down

For scientific/engineering applications: TNT

link|flag
vote up 1 vote down

I use Loki-lib most of the time. It's a generic, policy based library with generic DPs, idioms and other useful code snippets.
Boost is also good.
Ace is very good for distrubuted programming.

link|flag
vote up 1 vote down

Intels OpenCV for computer vision.

link|flag
vote up 1 vote down

Available C++ libraries FAQ

link|flag
vote up 1 vote down

IntelTBB for better multithreading. (More than just threads and mutexes)

link|flag
vote up 1 vote down

SDL for multi-platform graphics.

link|flag
vote up 1 vote down

STL for everyday C++ programming. It has useful algorithms, containers and data structures.

link|flag

Your Answer

Get an OpenID
or

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