Changes between Version 1 and Version 2 of CodingPatterns


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

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingPatterns

    v1 v2  
    1919
    2020 * Add `createXX` methods returning `std::unique_ptr<XX>`
    21  * Remove old create methods once all code is switched to using unique_ptr
     21 * Remove old create methods once all code is switched to using `std::unique_ptr`
    2222
    2323=== Unique_ptr typedefs?
     
    3030 * Improve performance by avoiding virtual function calls
    3131 * Support immutable use of external coordinate sequence formats
     32
     33**Issues**
     34 * Virtual functions
     35   * Are they really a performance hit?
     36   * Use templates?
    3237
    3338**Tasks**