Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Moving BGL to its own page)
Line 1: Line 1:
 
The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.
 
The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.
  
 +
* [[CPP/Boost/LexicalCast|lexical_cast - a replacement for std::stringstream]]
 
* [[CPP/Boost/Bimap|Bidirectional (both ways) map]]
 
* [[CPP/Boost/Bimap|Bidirectional (both ways) map]]
 
* [[CPP/Boost/Function|Glorified function pointers (function.hpp and bind.hpp)]]
 
* [[CPP/Boost/Function|Glorified function pointers (function.hpp and bind.hpp)]]

Revision as of 10:43, 17 November 2011

The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.

Boost Graph Library (BGL)

The Boost Graph Library is a c++ library for graph theoretic data structures and algorithms.

Wish List

Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.

Boost (Generic) Geometry Library

Boost Math Library

uBLAS

Tools