diff --git a/Modules/Core/Common/include/otbUtils.h b/Modules/Core/Common/include/otbUtils.h index da2ecc286ed4abf8e175a700b69f9e14a8483fb4..ec8ed5475928066f74af913491931433b1a4d6da 100644 --- a/Modules/Core/Common/include/otbUtils.h +++ b/Modules/Core/Common/include/otbUtils.h @@ -51,6 +51,9 @@ namespace Utils /** Function that prints nothing (useful to disable libsvm logs)*/ void OTBCommon_EXPORT PrintNothing(const char *s); + extern OTBCommon_EXPORT bool const TrueConstant; + + extern OTBCommon_EXPORT bool const FalseConstant; } } // namespace otb diff --git a/Modules/Core/Common/src/otbUtils.cxx b/Modules/Core/Common/src/otbUtils.cxx index f837789ba6ee406bb6739f527dc2ef103f780f9a..7bdf9edb7121801353360e316d8c15ac4836fe6b 100644 --- a/Modules/Core/Common/src/otbUtils.cxx +++ b/Modules/Core/Common/src/otbUtils.cxx @@ -41,6 +41,10 @@ void PrintNothing(const char * /* s */) { } +bool const TrueConstant = true; + +bool const FalseConstant = false; + } }