DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDFeatureGatingTable.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
602 B
C
Raw Normal View History

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