11/** \page porting_mrpt2 Porting code from MRPT 1.{3,4,5} to MRPT 2.*
12 *
13 * MRPT 2.0 includes several fundamental changes, most of them related to API
14 * clean ups and the introduction of C++17 as the minimum supported version of
15 * the language.
16 *
17 * Existing user applications may need to be adapted to continue compiling and
18 * working as usual after updating to MRPT 2.*:
19 *
20 * **Mandatory changes**
21 * - Your project must use C++17. Using CMake this is now done automatically when linking your targets against MRPT imported targes. See: \ref mrpt_from_cmake.
22 *
23 * - Matrices and classes no longer inherits from Eigen classes. See: \ref mrpt_math_vectors_matrices_grp
26 * - The header `<mrpt/math/lightweight_geom_data.h>` is deprecated. Instead, use
27 * - `<mrpt/math/TPose2D.h>`
28 * - `<mrpt/math/TPose3D.h>`
29 * - `<mrpt/math/TPoint2D.h>`
30 * - (and so on)
31 *
32 * - **Smart pointers** are now standard [`std::shared_ptr<>`](http://en.cppreference.com/w/cpp/memory/shared_ptr) instead of those based on `stlplus`. Required changes:
33 * - `ptr.clear()` --> `ptr.reset()`. Also, notice that the former `stlplus` semantics of `clear()` deleting **all** copies
34 * of the object, as hold by different smart pointers, is no longer maintained. There is no longer such a possibility, since the
35 * C++11 standard does not allow it to happen (and it makes sense in this way).
36 * - `ptr.clear_unique()` --> `ptr.reset()`. (Read this note above)
37 * - `ptr.make_unique()` does no longer exists, and does not make sense (read above).
38 * - `ptr.pointer()` --> `ptr.get()`
39 * - Smart pointers have been renamed from `CFooPtr` to the more standard `CFoo::Ptr`, with a new pointer-to-const version `CFoo::ConstPtr`.
40 * - Note: To help with porting and maintaining existing code bases, MRPT >=1.5.4 offers MRPT2-like `CFoo::Ptr` smart pointers. Refer to changelog of mrpt 1.5.4.
41 * - You can keep using code like:
42 * \code
43 * CFoo::Ptr o = CFoo::Create();
44 * \endcode
45 * in MRPT 2.0 to create a smart pointer, but can also use `std::make_shared<CFoo>()`, or `std::make_shared<CFoo>()` if the
46 * class must be memory-aligned (typically, if it contains Eigen matrices). The arguments of `Create()` are now [perfectly-forwarded](http://en.cppreference.com/w/cpp/utility/forward) to
47 * the class ctor, so the parameter list must exactly match any of the available ctors.
48 * - Smart pointer typecasting now is done via C++11 standard functions: