*Soon*: Add the keyword `DEPRECATED` in the call to `otb-module()` macro in file `otb-module.cmake`
\ No newline at end of file
## How to disable deprecated features when `OTB_USE_DEPRECATED=OFF`?
* If you deprecate a whole module, it will be disabled during configure step.
* If you want to deprecated a C++ class and the associated tests: use variable `OTB_USE_DEPRECATED` to protect the inclusion of this class in `src/CMakeLists.txt`, `test/CMakeLists.txt`
* in otbConfigure.h, there is a macro `OTB_USE_DEPRECATED`, which is defined when CMake option `OTB_USE_DEPRECATED=ON`. Use it to disable portions of code in `test/otbXXXTestDriver.cxx` for instance