1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef LS_STD_XML_ATTRIBUTE_HPP
- #define LS_STD_XML_ATTRIBUTE_HPP
- #include <ls_std/core/Class.hpp>
- #include <string>
- namespace ls
- {
- namespace std
- {
- namespace io
- {
- class XmlAttribute : public ls::std::core::Class
- {
- public:
- explicit XmlAttribute(const ::std::string &_name);
- ~XmlAttribute() override = default;
- ::std::string getName();
- ::std::string getValue();
- void setName(const ::std::string &_name);
- void setValue(const ::std::string &_value);
- ::std::string toXml();
- private:
- ::std::string name{};
- ::std::string value{};
- void _assignName(const ::std::string &_name);
- void _assignValue(const ::std::string &_value);
- };
- }
- }
- }
- #endif
|