XMLDeclaration.hpp 500 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-27
  6. * Changed: 2020-09-27
  7. *
  8. * */
  9. #ifndef LS_STD_XML_DECLARATION_HPP
  10. #define LS_STD_XML_DECLARATION_HPP
  11. #include "../../base/Class.hpp"
  12. namespace ls_std {
  13. class XMLDeclaration : public Class {
  14. public:
  15. XMLDeclaration();
  16. ~XMLDeclaration() = default;
  17. private:
  18. std::string version {};
  19. };
  20. }
  21. #endif