Changes between Version 2 and Version 3 of CodingPatterns


Ignore:
Timestamp:
May 15, 2019, 12:13:48 PM (5 years ago)
Author:
mdavis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingPatterns

    v2 v3  
    1111Older GEOS code may not adhere to all patterns, but the goal is to update it when possible.  New code should follow the patterns given here, unless this is not possible for compatibility reasons.
    1212
     13= Patterns
     14
     15== Object References
     16
    1317* Created objects should be returned as a `std::unique_ptr<Object>`
    1418* Taking ownership of a returned object should be done as a `std::unique_ptr<Object>`
    1519
    16 == Investigations =
     20== Investigations
    1721
    1822=== Geometry Factory improvements