2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDFeatureGating {
|
|
|
|
std::string featureName;
|
|
|
|
int32_t major;
|
|
|
|
int32_t current;
|
|
|
|
int32_t minor;
|
|
|
|
std::string description;
|
2023-11-18 09:33:23 +00:00
|
|
|
|
|
|
|
bool operator>=(const CDFeatureGating& b) const {
|
|
|
|
return (this->major > b.major) ||
|
|
|
|
(this->major == b.major && this->current > b.current) ||
|
|
|
|
(this->major == b.major && this->current == b.current && this->minor >= b.minor);
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDFeatureGatingTable : public CDTable<CDFeatureGatingTable, std::vector<CDFeatureGating>> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDFeatureGating> Query(std::function<bool(CDFeatureGating)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2023-11-18 09:33:23 +00:00
|
|
|
bool FeatureUnlocked(const CDFeatureGating& feature) const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|