RemoveBack Method

WRAPPER_API bool RemoveBack()

 

Description

The RemoveBack method removes the last DatumShift from this collection.  If the collection is empty, then this method will return false.  

 

Example

void DatumShiftCollection_RemoveBack(GeoCalcPBW::DatumShiftCollection & dsc)

{

if(! dsc.RemoveBack())

{

AfxMessageBox("cannot remove DatumShifts from an empty DatumShiftCollection");

}

}