2.3.1 Inserting points into a stroke
In the original MFC implementation, points were added to a stroke by the following statement:
m_pStrokeCur-›m_pointArray.Add(point);
In the STL implementation this becomes:
m_pStrokeCur-›m_pointArray.push_back(point);