This worked in VC++ 6 but in Visual Studio 2010 assign needs a second parameter,
in the context of this function would it be a better idea to use resize or reserve and why?
bool CN3ShapeExtra::Load(HANDLE hFile)
{
bool bSuccess = CN3Shape::Load(hFile);
int iPC = m_Parts.size();
m_Rotations.clear();
if(iPC <= 0) return bSuccess;
m_Rotations.assign(iPC);
return bSuccess;
}