WRAPPER_API void set_PointStyle(const CoordPoint &value)
The set_PointStyle method sets the CoordPoint that is used as a template for points in this CoordSys.
void CoordSys_setPointStyle(GeoCalcPBW::CoordSys & cs, GeoCalcPBW::DataSource & data)
{
if(cs.get_Class() == GeoCalcPBW::CoordSys::ClassType::Geodetic)
{
_towchar issuer("BMG");
_towchar code("GEODETIC_POINT_DEGREES");
cs.set_PointStyle(*data.GetGeodeticPoint(issuer.c_str(), code.c_str()));
}
}