DarkflameServer/dDatabase/Tables/CDItemSetSkillsTable.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.1 KiB
C
Raw Normal View History

#pragma once
// Custom Classes
#include "CDTable.h"
/*!
\file CDItemSetSkillsTable.hpp
\brief Contains data for the ItemSetSkills table
*/
//! ZoneTable Struct
struct CDItemSetSkills {
unsigned int SkillSetID; //!< The skill set ID
unsigned int SkillID; //!< The skill ID
unsigned int SkillCastType; //!< The skill cast type
};
//! ItemSets table
class CDItemSetSkillsTable : public CDTable {
private:
std::vector<CDItemSetSkills> entries;
2022-07-28 13:39:57 +00:00
public:
2022-07-28 13:39:57 +00:00
//! Constructor
CDItemSetSkillsTable(void);
2022-07-28 13:39:57 +00:00
//! Destructor
~CDItemSetSkillsTable(void);
2022-07-28 13:39:57 +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
//! Queries the table with a custom "where" clause
/*!
\param predicate The predicate
*/
std::vector<CDItemSetSkills> Query(std::function<bool(CDItemSetSkills)> predicate);
2022-07-28 13:39:57 +00:00
//! Gets all the entries in the table
/*!
\return The entries
*/
std::vector<CDItemSetSkills> GetEntries(void) const;
std::vector<CDItemSetSkills> GetBySkillID(unsigned int SkillSetID);
2022-07-28 13:39:57 +00:00
};