Changes between Version 42 and Version 43 of MapGuideCodingStandards


Ignore:
Timestamp:
09/19/22 05:22:02 (2 years ago)
Author:
jng
Comment:

Fix code example

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideCodingStandards

    v42 v43  
    200200
    201201{{{
     202class MgCoordinateSystemMeasure
     203{
    202204public:
    203205    ...
    204206    virtual double GetDistance(MgCoordinate* coord1, MgCoordinate* coord2) = 0;
    205207    virtual double GetDistance(double x1, double y1, double x2, double y2)=0; //New overload only in MgCoordinateSystemMeasure
     208};
    206209}}}
    207210