Activating the Standard Template Library
The Standard Template Library is a normalized library of containers, iterators, algorithms, and helper classes to ease most common programming operations, such as dynamic arrays, associative arrays, strings, sorting, and so on. This library gained recognition among developers over the years and is widely spread. Developing in C++ without the STL is like coding with one hand behind your back!
In this first part, let's embed GNU STL in DroidBlaster to ease collection management.
Note
Resulting project is provided with this book under the name DroidBlaster_Part16
.