Skip to content

Commit

Permalink
Export classes and structs.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Sep 6, 2023
1 parent 48b4d47 commit f0441cf
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<typename Threshold, typename Compare>
class ConditionVector final : public SparseArraysVector<Threshold>,
public IConditional {
class MLRLCOMMON_API ConditionVector final : public SparseArraysVector<Threshold>,
public IConditional {
private:

Compare compare_;
Expand Down Expand Up @@ -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:

/**
Expand All @@ -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:

/**
Expand All @@ -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:

/**
Expand All @@ -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:

/**
Expand All @@ -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:

/**
Expand All @@ -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:

/**
Expand Down

0 comments on commit f0441cf

Please sign in to comment.