Changes between Version 40 and Version 41 of MapGuideCodingStandards
- Timestamp:
- 09/19/22 04:45:01 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideCodingStandards
v40 v41 164 164 * For strings, only `std::wstring` (aliased in MapGuide as `STRING`) is permitted and only by value 165 165 * 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` 166 167 167 168 Do 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.