From f0441cfe44c97dbf3bd9102100c913c335920a60 Mon Sep 17 00:00:00 2001 From: Michael Rapp Date: Wed, 6 Sep 2023 20:31:22 +0200 Subject: [PATCH] Export classes and structs. --- .../mlrl/common/model/body_conjunctive.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cpp/subprojects/common/include/mlrl/common/model/body_conjunctive.hpp b/cpp/subprojects/common/include/mlrl/common/model/body_conjunctive.hpp index 5ce3924a96..87ab7e5000 100644 --- a/cpp/subprojects/common/include/mlrl/common/model/body_conjunctive.hpp +++ b/cpp/subprojects/common/include/mlrl/common/model/body_conjunctive.hpp @@ -20,8 +20,8 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { * @tparam Compare The type of the comparator that should be used to compare thresholds to feature values */ template - class ConditionVector final : public SparseArraysVector, - public IConditional { + class MLRLCOMMON_API ConditionVector final : public SparseArraysVector, + public IConditional { private: Compare compare_; @@ -52,7 +52,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare numerical feature values to threshold using the <= operator. */ - struct CompareNumericalLeq final { + struct MLRLCOMMON_API CompareNumericalLeq final { public: /** @@ -70,7 +70,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare numerical feature values to threshold using the > operator. */ - struct CompareNumericalGr final { + struct MLRLCOMMON_API CompareNumericalGr final { public: /** @@ -88,7 +88,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare ordinal feature values to threshold using the <= operator. */ - struct CompareOrdinalLeq final { + struct MLRLCOMMON_API CompareOrdinalLeq final { public: /** @@ -106,7 +106,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare ordinal feature values to threshold using the > operator. */ - struct CompareOrdinalGr final { + struct MLRLCOMMON_API CompareOrdinalGr final { public: /** @@ -124,7 +124,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare nominal feature values to threshold using the == operator. */ - struct CompareNominalEq final { + struct MLRLCOMMON_API CompareNominalEq final { public: /** @@ -142,7 +142,7 @@ class MLRLCOMMON_API ConjunctiveBody final : public IBody { /** * Allows to compare nominal feature values to threshold using the != operator. */ - struct CompareNominalNeq final { + struct MLRLCOMMON_API CompareNominalNeq final { public: /**