12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-09-27
- * Changed: 2022-05-11
- *
- * */
- #ifndef LS_STD_XML_DOCUMENT_HPP
- #define LS_STD_XML_DOCUMENT_HPP
- #include <memory>
- #include <ls_std/core/Class.hpp>
- #include "XmlNode.hpp"
- #include "XmlDeclaration.hpp"
- namespace ls
- {
- namespace std
- {
- namespace io
- {
- class XmlDocument : public ls::std::core::Class
- {
- public:
- XmlDocument();
- ~XmlDocument() override = default;
- ::std::shared_ptr<ls::std::io::XmlDeclaration> getDeclaration();
- ::std::shared_ptr<ls::std::io::XmlNode> getRootElement();
- void setDeclaration(const ::std::shared_ptr<ls::std::io::XmlDeclaration> &_declaration);
- void setRootElement(const ::std::shared_ptr<ls::std::io::XmlNode> &_rootElement);
- ::std::string toXml();
- private:
- ::std::shared_ptr<ls::std::io::XmlDeclaration> declaration{};
- ::std::shared_ptr<ls::std::io::XmlNode> rootElement{};
- void _assignDeclaration(const ::std::shared_ptr<ls::std::io::XmlDeclaration> &_declaration);
- void _assignRootElement(const ::std::shared_ptr<ls::std::io::XmlNode> &_rootElement);
- };
- }
- }
- }
- #endif
|