/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-23 * Changed: 2021-05-02 * * */ #ifndef LS_STD_XML_ATTRIBUTE_HPP #define LS_STD_XML_ATTRIBUTE_HPP #include #include namespace ls_std { class XmlAttribute : public ls_std::Class { public: explicit XmlAttribute(std::string _name); ~XmlAttribute() override = default; std::string getName(); std::string getValue(); void setName(std::string _name); void setValue(std::string _value); std::string toXml(); private: std::string name{}; std::string value{}; }; } #endif