mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-26 15:33:34 +00:00
9655f0ee45
fix compile issues
21 lines
573 B
C++
21 lines
573 B
C++
#ifndef ICHARXML_H
|
|
#define ICHARXML_H
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
class ICharXml {
|
|
public:
|
|
// Get the character xml for the given character id.
|
|
virtual std::string GetCharacterXml(const uint32_t charId) = 0;
|
|
|
|
// Update the character xml for the given character id.
|
|
virtual void UpdateCharacterXml(const uint32_t charId, const std::string_view lxfml) = 0;
|
|
|
|
// Insert the character xml for the given character id.
|
|
virtual void InsertCharacterXml(const uint32_t characterId, const std::string_view lxfml) = 0;
|
|
};
|
|
|
|
#endif //!ICHARXML_H
|