Changes between Version 42 and Version 43 of MapGuideCodingStandards
- Timestamp:
- 09/19/22 05:22:02 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideCodingStandards
v42 v43 200 200 201 201 {{{ 202 class MgCoordinateSystemMeasure 203 { 202 204 public: 203 205 ... 204 206 virtual double GetDistance(MgCoordinate* coord1, MgCoordinate* coord2) = 0; 205 207 virtual double GetDistance(double x1, double y1, double x2, double y2)=0; //New overload only in MgCoordinateSystemMeasure 208 }; 206 209 }}} 207 210