Changes between Version 40 and Version 41 of MapGuideCodingStandards


Ignore:
Timestamp:
Sep 19, 2022, 4:45:01 AM (2 years ago)
Author:
jng
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideCodingStandards

    v40 v41  
    164164   * For strings, only `std::wstring` (aliased in MapGuide as `STRING`) is permitted and only by value
    165165   * For byte buffers or binary content, return a raw pointer to `MgByteReader`
     166   * For arrays/collections, never return a raw pointer or a STL collection type. Always return a raw pointer to any subclass of `MgCollection`
    166167
    167168Do not bother/try making public API methods `const`-correct, it will not affect SWIG interface generation and may even complicate or break it in some cases.