#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value_Name:
Public Member Functions | |
TAO_PSDL_Value_Name (TAO_PSDL_Node *scoped_name) | |
**************************************************************** | |
TAO_PSDL_Value_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *value_name) | |
virtual | ~TAO_PSDL_Value_Name (void) |
TAO_PSDL_Node * | scoped_name (void) const |
Get the value. | |
TAO_PSDL_Node * | value_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | scoped_name_ |
The values. | |
TAO_PSDL_Node * | value_name_ |
Definition at line 2958 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4644 of file PSDL_Node.cpp.
04645 : scoped_name_ (scoped_name), 04646 value_name_ (0) 04647 { 04648 } |
|
Definition at line 4650 of file PSDL_Node.cpp.
04652 : scoped_name_ (scoped_name), 04653 value_name_ (value_name) 04654 { 04655 } |
|
Definition at line 4657 of file PSDL_Node.cpp.
04658 { 04659 if (this->scoped_name_ != 0) 04660 delete this->scoped_name_; 04661 04662 if (this->value_name_ != 0) 04663 delete this->value_name_; 04664 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4681 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_value_name().
04682 { 04683 return visitor->visit_value_name (this); 04684 } |
|
Get the value.
Definition at line 4668 of file PSDL_Node.cpp.
04669 { 04670 return this->scoped_name_; 04671 } |
|
Definition at line 4674 of file PSDL_Node.cpp.
04675 { 04676 return this->value_name_; 04677 } |
|
The values.
Definition at line 2979 of file PSDL_Node.h. |
|
Definition at line 2980 of file PSDL_Node.h. |