XmlDocument.hpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-27
  6. * Changed: 2022-05-11
  7. *
  8. * */
  9. #ifndef LS_STD_XML_DOCUMENT_HPP
  10. #define LS_STD_XML_DOCUMENT_HPP
  11. #include <memory>
  12. #include <ls_std/core/Class.hpp>
  13. #include "XmlNode.hpp"
  14. #include "XmlDeclaration.hpp"
  15. namespace ls
  16. {
  17. namespace std
  18. {
  19. namespace io
  20. {
  21. class XmlDocument : public ls::std::core::Class
  22. {
  23. public:
  24. XmlDocument();
  25. ~XmlDocument() override = default;
  26. ::std::shared_ptr<ls::std::io::XmlDeclaration> getDeclaration();
  27. ::std::shared_ptr<ls::std::io::XmlNode> getRootElement();
  28. void setDeclaration(const ::std::shared_ptr<ls::std::io::XmlDeclaration> &_declaration);
  29. void setRootElement(const ::std::shared_ptr<ls::std::io::XmlNode> &_rootElement);
  30. ::std::string toXml();
  31. private:
  32. ::std::shared_ptr<ls::std::io::XmlDeclaration> declaration{};
  33. ::std::shared_ptr<ls::std::io::XmlNode> rootElement{};
  34. void _assignDeclaration(const ::std::shared_ptr<ls::std::io::XmlDeclaration> &_declaration);
  35. void _assignRootElement(const ::std::shared_ptr<ls::std::io::XmlNode> &_rootElement);
  36. };
  37. }
  38. }
  39. }
  40. #endif