/ styx_dom.hh / Objects / StyxDomNode / Private Datas / Description

Private Datas



type

DomNodeType		type;
DomNodeType representing the node type.


complete

bool			complete;
Boolean showing if the tag is closed or not.


name

string		name;
Character string containing the node name.


value

string		value;
Character string containing the node value.


parent

StyxDomNode		*parent;
Pointer to the parent node of this node.


prev

StyxDomNode		*prev;
Pointer to the previous sibling node of this node.


next

StyxDomNode		*next;
Pointer to the next sibling node of this node.


attributes

StyxDomNode*		attributes;
List of the attributes node of this node.


firstChild

StyxDomNode		*firstChild;
Pointer to the first child node of this node.


lastChild

StyxDomNode		*lastChild;
Pointer to the last child node of this node.


document

StyxDomNode		*document;
Pointer to the root document node.


namingspace

StyxDomNamespace	*namingspace;
Namespace associated to this node.


xmlnsAttributes

StyxDomNamespace	*xmlnsAttributes;
List of namespaces declared in this node.