Contents Previous Next

mxml_node_s


Description

An XML node.

Definition

struct mxml_node_s
{
  struct mxml_node_s * child;
  struct mxml_node_s * last_child;
  struct mxml_node_s * next;
  struct mxml_node_s * parent;
  struct mxml_node_s * prev;
  mxml_type_t type;
  mxml_value_t value;
};

Members

NameDescription
childFirst child node
last_childLast child node
nextNext node under same parent
parentParent node
prevPrevious node under same parent
typeNode type
valueNode value

Contents Previous Next