Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members  

xmlpp::Node Class Reference

Represents XML Nodes. More...

Inheritance diagram for xmlpp::Node:

Inheritance graph
[legend]
List of all members.

Public Types

typedef std::list< Node * > NodeList
typedef std::list< Attribute * > AttributeList

Public Methods

 Node (_xmlNode *node)
virtual ~Node ()
std::string get_name () const
void set_name (const std::string &name)
void set_namespace (const std::string &ns_prefix)
 Set the namespace prefix used by the node If no such namespace prefix has been declared then this method will throw an exception.

std::string get_namespace_prefix () const
std::string get_namespace_uri () const
int get_line () const
NodeList get_children (const std::string &name=std::string())
const NodeList get_children (const std::string &name=std::string()) const
Elementadd_child (const std::string &name, const std::string &ns_prefix=std::string())
 Add a child element to this node.

void remove_child (Node *node)
 Remove the child node.

Node * import_node (const Node *node, bool recursive=true)
 Import node(s) from another document under this node, without affecting the source node.

std::string get_path () const
NodeSet find (const std::string &xpath) const
_xmlNode * cobj ()
 Access the underlying libxml implementation.

const _xmlNode * cobj () const
 Access the underlying libxml implementation.


Detailed Description

Represents XML Nodes.

You should never new or delete Nodes. The Parser will create and manage them for you.


Member Typedef Documentation

typedef std::list<Attribute*> xmlpp::Node::AttributeList
 

typedef std::list<Node*> xmlpp::Node::NodeList
 


Constructor & Destructor Documentation

xmlpp::Node::Node _xmlNode *    node [explicit]
 

virtual xmlpp::Node::~Node   [virtual]
 


Member Function Documentation

Element* xmlpp::Node::add_child const std::string &    name,
const std::string &    ns_prefix = std::string()
 

Add a child element to this node.

Parameters:
name  The new node name
ns_prefix  The namespace prefix. If the prefix has not been declared then this method will throw an exception.
Returns:
The newly-created element

const _xmlNode* xmlpp::Node::cobj  
 

Access the underlying libxml implementation.

Reimplemented in xmlpp::Attribute.

_xmlNode* xmlpp::Node::cobj  
 

Access the underlying libxml implementation.

Reimplemented in xmlpp::Attribute.

NodeSet xmlpp::Node::find const std::string &    xpath const
 

const NodeList xmlpp::Node::get_children const std::string &    name = std::string() const
 

NodeList xmlpp::Node::get_children const std::string &    name = std::string()
 

int xmlpp::Node::get_line  
 

std::string xmlpp::Node::get_name  
 

Reimplemented in xmlpp::Attribute.

std::string xmlpp::Node::get_namespace_prefix  
 

std::string xmlpp::Node::get_namespace_uri  
 

std::string xmlpp::Node::get_path  
 

Node* xmlpp::Node::import_node const Node *    node,
bool    recursive = true
 

Import node(s) from another document under this node, without affecting the source node.

Parameters:
node  The node to copy and insert under the current node.
recursive  Whether to import the child nodes also. Defaults to true.
Returns:
The newly-created node.

void xmlpp::Node::remove_child Node *    node
 

Remove the child node.

Parameters:
node  The child node to remove. This Node will be deleted and therefore unusable after calling this method.

void xmlpp::Node::set_name const std::string &    name
 

void xmlpp::Node::set_namespace const std::string &    ns_prefix
 

Set the namespace prefix used by the node If no such namespace prefix has been declared then this method will throw an exception.


The documentation for this class was generated from the following file:
Generated on Wed Nov 12 18:23:00 2003 for libxml++ by doxygen1.2.18