2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\file CDFeatureGatingTable.hpp
|
|
|
|
*/
|
|
|
|
|
|
|
|
//! ItemComponent Struct
|
|
|
|
struct CDFeatureGating {
|
|
|
|
std::string featureName;
|
|
|
|
int32_t major;
|
|
|
|
int32_t current;
|
|
|
|
int32_t minor;
|
|
|
|
std::string description;
|
|
|
|
};
|
|
|
|
|
|
|
|
//! ItemComponent table
|
|
|
|
class CDFeatureGatingTable : public CDTable {
|
|
|
|
private:
|
|
|
|
std::vector<CDFeatureGating> entries;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Constructor
|
|
|
|
CDFeatureGatingTable(void);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Destructor
|
|
|
|
~CDFeatureGatingTable(void);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Returns the table's name
|
|
|
|
/*!
|
|
|
|
\return The table name
|
|
|
|
*/
|
|
|
|
std::string GetName(void) const override;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Queries the table with a custom "where" clause
|
|
|
|
/*!
|
|
|
|
\param predicate The predicate
|
|
|
|
*/
|
|
|
|
std::vector<CDFeatureGating> Query(std::function<bool(CDFeatureGating)> predicate);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
bool FeatureUnlocked(const std::string& feature) const;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Gets all the entries in the table
|
|
|
|
/*!
|
|
|
|
\return The entries
|
|
|
|
*/
|
|
|
|
std::vector<CDFeatureGating> GetEntries(void) const;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|