Difference between revisions of "Boost"
From ProgrammingExamples
Daviddoria (Talk | contribs) |
Daviddoria (Talk | contribs) |
||
| Line 11: | Line 11: | ||
* [[CPP/Boost/ThreadCommunication|ThreadCommunication]] | * [[CPP/Boost/ThreadCommunication|ThreadCommunication]] | ||
* [[CPP/Boost/Timer|Timer]] | * [[CPP/Boost/Timer|Timer]] | ||
| + | |||
| + | == Boost Graph Library (BGL) == | ||
* [[CPP/Boost/CreateGraph|Create a graph]] | * [[CPP/Boost/CreateGraph|Create a graph]] | ||
| + | * [[CPP/Boost/BGL/EdgeProperties|Add properties to edges]] | ||
Revision as of 15:55, 26 January 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.
- Create a histogram (accumulator)
- Matrix
- Multi dimensional array
- Simple command line argument parsing (ProgramOptions)
- Multiple command line argument parsing (ProgramOptions)
- ProgressBar
- Threads
- Threads with member functions
- ThreadCommunication
- Timer