WRAPPER_API long get_Count() const
The get_Count method returns a long value that indicates the number of CoordPoints in this CoordPointCollection.
void CoordPointCollection_getCount(GEOCALCPBW_NAMESPACE::CoordPointCollection & cpc)
{
for(int i = 0; i < cpc.get_Count(); i++)
{
GEOCALCPBW_NAMESPACE::CoordPoint * pt = cpc.get_Point(i);
delete pt;
}
}