#ifndef __ICHARXML__H__ #define __ICHARXML__H__ #include #include #include class ICharXml { public: // Get the character xml for the given character id. virtual std::string GetCharacterXml(const LWOOBJID charId) = 0; // Update the character xml for the given character id. virtual void UpdateCharacterXml(const LWOOBJID charId, const std::string_view lxfml) = 0; // Insert the character xml for the given character id. virtual void InsertCharacterXml(const LWOOBJID characterId, const std::string_view lxfml) = 0; }; #endif //!__ICHARXML__H__