Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
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/Bimap|Bidirectional (both ways) map]]
 
* [[CPP/Boost/Function|Glorified function pointers]]
 
* [[CPP/Boost/Function|Glorified function pointers]]
 
* [[CPP/Boost/Histogram|Create a histogram (accumulator)]]
 
* [[CPP/Boost/Histogram|Create a histogram (accumulator)]]

Revision as of 20:53, 10 March 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)