Using Boost for managing a list of pointers

Date January 29, 2008

One of the popular uses of the Standard Template Library (STL) in the C++ language is to manage a dynamic list of pointers. For example, if you have a rendering system for your game which works with a common base object that every drawable object is derived from.
If you were using STL, then typically you [...]