DarkflameServer/dDatabase/Tables/CDPropertyEntranceComponentTable.h

42 lines
900 B
C
Raw Normal View History

#pragma once
#include "CDTable.h"
struct CDPropertyEntranceComponent {
2022-07-28 13:39:57 +00:00
uint32_t id;
uint32_t mapID;
std::string propertyName;
bool isOnProperty;
std::string groupType;
};
class CDPropertyEntranceComponentTable : public CDTable {
public:
2022-07-28 13:39:57 +00:00
//! Constructor
CDPropertyEntranceComponentTable();
2022-07-28 13:39:57 +00:00
//! Destructor
~CDPropertyEntranceComponentTable();
2022-07-28 13:39:57 +00:00
//! Returns the table's name
/*!
\return The table name
*/
[[nodiscard]] std::string GetName() const override;
2022-07-28 13:39:57 +00:00
//! Queries the table with a custom "where" clause
/*!
\param predicate The predicate
*/
CDPropertyEntranceComponent GetByID(uint32_t id);
2022-07-28 13:39:57 +00:00
//! Gets all the entries in the table
/*!
\return The entries
*/
[[nodiscard]] std::vector<CDPropertyEntranceComponent> GetEntries() const { return entries; }
private:
2022-07-28 13:39:57 +00:00
std::vector<CDPropertyEntranceComponent> entries{};
CDPropertyEntranceComponent defaultEntry{};
};