#pragma once // Custom Classes #include "CDTable.h" /*! \file CDCurrencyTableTable.hpp \brief Contains data for the CurrencyTable table */ //! CurrencyTable Struct struct CDCurrencyTable { 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 { private: std::vector entries; public: void LoadValuesFromDatabase(); // Queries the table with a custom "where" clause std::vector Query(std::function predicate); const std::vector& GetEntries() const; };