#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Switch_Body:
Public Member Functions | |
TAO_PSDL_Switch_Body (TAO_PSDL_Node *switch_case) | |
**************************************************************** | |
TAO_PSDL_Switch_Body (TAO_PSDL_Node *switch_case, TAO_PSDL_Node *switch_body) | |
virtual | ~TAO_PSDL_Switch_Body (void) |
TAO_PSDL_Node * | switch_case (void) const |
Get the value. | |
TAO_PSDL_Node * | switch_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | switch_case_ |
The values. | |
TAO_PSDL_Node * | switch_body_ |
Definition at line 1814 of file PSDL_Node.h.
|
****************************************************************
Definition at line 2803 of file PSDL_Node.cpp.
02804 : switch_case_ (switch_case), 02805 switch_body_ (0) 02806 { 02807 } |
|
Definition at line 2809 of file PSDL_Node.cpp.
02811 : switch_case_ (switch_case), 02812 switch_body_ (switch_body) 02813 { 02814 } |
|
Definition at line 2816 of file PSDL_Node.cpp. References switch_case_.
02817 { 02818 delete this->switch_case_; 02819 delete this->switch_body_; 02820 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 2837 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_switch_body().
02838 { 02839 return visitor->visit_switch_body (this); 02840 } |
|
Definition at line 2830 of file PSDL_Node.cpp.
02831 { 02832 return this->switch_body_; 02833 } |
|
Get the value.
Definition at line 2824 of file PSDL_Node.cpp. References switch_case_.
02825 { 02826 return this->switch_case_; 02827 } |
|
Definition at line 1835 of file PSDL_Node.h. |
|
The values.
Definition at line 1834 of file PSDL_Node.h. Referenced by switch_case(), and ~TAO_PSDL_Switch_Body(). |