Changes between Version 3 and Version 4 of CodingPatterns


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

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingPatterns

    v3 v4  
    1818* Taking ownership of a returned object should be done as a `std::unique_ptr<Object>`
    1919
    20 == Investigations
     20= Investigations
    2121
    22 === Geometry Factory improvements
     22== Geometry Factory improvements
    2323
    2424 * Add `createXX` methods returning `std::unique_ptr<XX>`
    2525 * Remove old create methods once all code is switched to using `std::unique_ptr`
    2626
    27 === Unique_ptr typedefs?
     27== Unique_ptr typedefs?
    2828
    2929 * To reduce boilerplate perhaps define typedefs for common types:  `UP_Geometry`, `UP_CoordinateSequence`, etc
    3030
    31 === Coordinate Sequence improvements
     31== Coordinate Sequence improvements
    3232
    3333**Goals:**