DarkflameServer/dDatabase/Tables/CDFeatureGatingTable.h

27 lines
556 B
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
struct CDFeatureGating {
2022-07-28 13:39:57 +00:00
std::string featureName;
int32_t major;
int32_t current;
int32_t minor;
std::string description;
};
2023-07-16 07:27:30 +00:00
namespace CDFeatureGatingTable {
private:
2022-07-28 13:39:57 +00:00
std::vector<CDFeatureGating> entries;
public:
2023-07-16 07:27:30 +00:00
void LoadTableIntoMemory();
// Queries the table with a custom "where" clause
2022-07-28 13:39:57 +00:00
std::vector<CDFeatureGating> Query(std::function<bool(CDFeatureGating)> predicate);
bool FeatureUnlocked(const std::string& feature) const;
std::vector<CDFeatureGating> GetEntries(void) const;
};