wxxmlpropertyrepresents a node property. example: in <img src="hello.gif" id="3"/>, "src" is property with value "hello.gif" and "id" is a property with value "3". derived from no base class include files <wx/xml/xml.h> see also members
wxxmlproperty::wxxmlproperty
wxxmlproperty::wxxmlpropertywxxmlproperty() wxxmlproperty(const wxstring& name, const wxstring& value, wxxmlproperty* next = null) creates the property with given name and value. if next is not null, then sets it as sibling of this property.
wxxmlproperty::~wxxmlproperty~wxxmlproperty() the virtual destructor.
wxxmlproperty::getnamewxstring getname() const returns the name of this property.
wxxmlproperty::getnextwxxmlproperty* getnext() const returns the sibling of this property or null if there are no siblings.
wxxmlproperty::getvaluewxstring getvalue() const returns the value of this property.
wxxmlproperty::setnamevoid setname(const wxstring& name) sets the name of this property.
wxxmlproperty::setnextvoid setnext(wxxmlproperty* next) sets the sibling of this property.
wxxmlproperty::setvaluevoid setvalue(const wxstring& value) sets the value of this property.
|