/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-27 * Changed: 2020-11-26 * * */ #ifndef LS_STD_XML_DOCUMENT_HPP #define LS_STD_XML_DOCUMENT_HPP #include #include #include "XMLNode.hpp" #include "XMLDeclaration.hpp" namespace ls_std { class XMLDocument : public Class { public: XMLDocument(); ~XMLDocument() override = default; std::shared_ptr getDeclaration(); std::shared_ptr getRootElement(); void setDeclaration(const std::shared_ptr& _declaration); void setRootElement(const std::shared_ptr& _root); std::string toXML(); private: std::shared_ptr declaration {}; std::shared_ptr rootElement {}; }; } #endif