WRAPPER_API bool RemoveBack()
The RemoveBack method removes the last DatumShift from this collection. If the collection is empty, then this method will return false.
void DatumShiftCollection_RemoveBack(GeoCalcPBW::DatumShiftCollection & dsc)
{
if(! dsc.RemoveBack())
{
AfxMessageBox("cannot remove DatumShifts from an empty DatumShiftCollection");
}
}