#include <parser/debug_validator/Element_Tree.h>
Inheritance diagram for ACEXML_Element_Tree_Node:
Public Member Functions | |
ACEXML_Element_Tree_Node () | |
Default constructor. | |
virtual | ~ACEXML_Element_Tree_Node () |
Destructor. | |
ACEXML_Element_Tree_Node * | next () |
Accessor for next element in chain. | |
void | next (ACEXML_Element_Tree_Node *n) |
virtual void | dump ()=0 |
Displaying the content. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Protected Attributes | |
ACEXML_Element_Tree_Node * | next_ |
Definition at line 31 of file Element_Tree.h.
|
Default constructor.
Definition at line 4 of file Element_Tree.i.
00005 : next_ (0) 00006 { 00007 } |
|
Destructor.
Definition at line 9 of file Element_Tree.cpp.
00010 { 00011 delete this->next_; 00012 } |
|
Displaying the content.
Implemented in ACEXML_Element_Tree_Name_Node, and ACEXML_Element_Tree_List_Node. Referenced by ACEXML_Element_Tree_List_Node::dump(). |
|
Definition at line 16 of file Element_Tree.i.
00017 { 00018 this->next_ = n; 00019 } |
|
Accessor for next element in chain.
Definition at line 10 of file Element_Tree.i. Referenced by ACEXML_Element_Tree_List_Node::dump(), and ACEXML_Element_Tree_List_Node::insert().
00011 { 00012 return this->next_; 00013 } |
|
Reimplemented in ACEXML_Element_Tree_Name_Node, and ACEXML_Element_Tree_List_Node. Definition at line 48 of file Element_Tree.h. |
|
Definition at line 51 of file Element_Tree.h. |