Update How to deprecate authored by Guillaume Pasero's avatar Guillaume Pasero
......@@ -2,9 +2,9 @@ So you want to deprecate something in OTB? Follow the guide:
## A C++ class
Use the `[[deprecated]]` attribute.
In the doxygen documentation of the class, add the `\deprecated` keyword.
If the class declaration already has an export macro, use the macro `_DEPRECATED_EXPORT`.
In the class declaration, use the `[[deprecated]]` attribute. If the class declaration already has an export macro, use the macro `_DEPRECATED_EXPORT`.
## A method of a C++ class
......
......