#include <XMLDocument.h>
Inheritance diagram for util::xml::Attr:

It is named 'Attr' (not 'Attribute') because that is the name in DOM 1.0 specification.
Public Methods | |
| Attr (std::string n, std::string v) | |
| Create an attribute with the given name and value. | |
| std::string | getName () const |
| Get the name of this attribute. | |
| void | printOut (std::ostream &out) const throw (util::io::IOException&) |
| Printing out an attribute does nothing, as Element prints its attributes in a special way. | |
Public Attributes | |
| std::string | name |
| The name of the attribute. | |
| std::string | value |
| The value of the attribute. | |