#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Case:
Public Member Functions | |
TAO_PSDL_Case (TAO_PSDL_Node *case_label, TAO_PSDL_Node *element_spec) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Case (void) |
TAO_PSDL_Node * | case_label (void) const |
Get the value. | |
TAO_PSDL_Node * | element_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | case_label_ |
The values. | |
TAO_PSDL_Node * | element_spec_ |
Definition at line 1840 of file PSDL_Node.h.
|
****************************************************************
Definition at line 2844 of file PSDL_Node.cpp.
02846 : case_label_ (case_label), 02847 element_spec_ (element_spec) 02848 { 02849 } |
|
Definition at line 2851 of file PSDL_Node.cpp. References case_label_, and element_spec_.
02852 { 02853 delete this->case_label_; 02854 delete this->element_spec_; 02855 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 2872 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_case_case().
02873 { 02874 return visitor->visit_case_case (this); 02875 } |
|
Get the value.
Definition at line 2859 of file PSDL_Node.cpp. References case_label_.
02860 { 02861 return this->case_label_; 02862 } |
|
Definition at line 2865 of file PSDL_Node.cpp. References element_spec_.
02866 { 02867 return this->element_spec_; 02868 } |
|
The values.
Definition at line 1858 of file PSDL_Node.h. Referenced by case_label(), and ~TAO_PSDL_Case(). |
|
Definition at line 1859 of file PSDL_Node.h. Referenced by element_spec(), and ~TAO_PSDL_Case(). |