/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-10-08 * Changed: 2022-05-19 * * */ #ifndef LS_STD_XML_READER_HPP #define LS_STD_XML_READER_HPP #include #include "XmlDocument.hpp" #include #include #include "XmlParseMode.hpp" #include "XmlParseParameter.hpp" #include namespace ls { namespace std { namespace io { class XmlReader : public ls::std::core::Class, public ls::std::core::interface_type::IReader { public: explicit XmlReader(const ::std::shared_ptr &_document, const ::std::string &_absolutePath); ~XmlReader() override = default; // implementation ls::std::core::type::byte_field read() override; // additional functionality ::std::shared_ptr getDocument(); void setDocument(const ::std::shared_ptr &_document); void setFile(const ls::std::io::File &_xmlFile); private: ::std::shared_ptr document{}; ls::std::io::File xmlFile; void _assignDocument(const ::std::shared_ptr &_document); void _assignFile(ls::std::io::File _xmlFile); }; } } } #endif