2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDProximityMonitorComponent {
|
|
|
|
unsigned int id;
|
|
|
|
std::string Proximities;
|
|
|
|
bool LoadOnClient;
|
|
|
|
bool LoadOnServer;
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDProximityMonitorComponentTable : public CDTable<CDProximityMonitorComponentTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::vector<CDProximityMonitorComponent> entries;
|
|
|
|
|
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2021-12-05 17:54:36 +00:00
|
|
|
//! Queries the table with a custom "where" clause
|
|
|
|
std::vector<CDProximityMonitorComponent> Query(std::function<bool(CDProximityMonitorComponent)> predicate);
|
|
|
|
|
2023-08-11 04:27:40 +00:00
|
|
|
const std::vector<CDProximityMonitorComponent>& GetEntries() const;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|