DarkflameServer/dDatabase/Tables/CDCurrencyTableTable.h

32 lines
897 B
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
/*!
\file CDCurrencyTableTable.hpp
\brief Contains data for the CurrencyTable table
*/
2022-07-28 13:39:57 +00:00
//! CurrencyTable Struct
struct CDCurrencyTable {
2022-07-28 13:39:57 +00:00
unsigned int currencyIndex; //!< The Currency Index
unsigned int npcminlevel; //!< The minimum level of the npc
unsigned int minvalue; //!< The minimum currency
unsigned int maxvalue; //!< The maximum currency
unsigned int id; //!< The ID of the currency index
};
//! CurrencyTable table
class CDCurrencyTableTable : public CDTable<CDCurrencyTableTable> {
private:
2022-07-28 13:39:57 +00:00
std::vector<CDCurrencyTable> entries;
public:
CDCurrencyTableTable();
// Queries the table with a custom "where" clause
2022-07-28 13:39:57 +00:00
std::vector<CDCurrencyTable> Query(std::function<bool(CDCurrencyTable)> predicate);
std::vector<CDCurrencyTable> GetEntries(void) const;
};