WRAPPER_API virtual CoordPoint *CloneCoordPoint(short dim = 0) const
The CloneCoordPoint method produces a deep-copy of the current instance. The behavior of the CloneCoordPoint method is the same as the behavior of the Clone method, except CloneCoordPoint returns a pointer to a CoordPoint instead of a pointer to a Serializable.
void CoordPoint_CloneCoordPoint(GeoCalcPBW::CoordPoint * pt)
{
GeoCalcPBW::CoordPoint * clonedPt = pt->CloneCoordPoint();
}