libdonut  2.3.2
Application framework for cross-platform game development in C++20
Public Attributes | List of all members
donut::xml::Attribute Struct Reference

Named attribute of an Element with an optional value. More...

#include <donut/xml.hpp>

Public Attributes

std::string name {}
 Name of the attribute. More...
 
std::string value {}
 Attribute value, or empty for no value. More...
 
std::unique_ptr< Attributenext {}
 Next neighboring attribute in the list that this attribute is part of. More...
 

Detailed Description

Named attribute of an Element with an optional value.

Member Data Documentation

◆ name

std::string donut::xml::Attribute::name {}

Name of the attribute.

◆ value

std::string donut::xml::Attribute::value {}

Attribute value, or empty for no value.

◆ next

std::unique_ptr<Attribute> donut::xml::Attribute::next {}

Next neighboring attribute in the list that this attribute is part of.


The documentation for this struct was generated from the following file: