**************************************************************** More...
#include <PSDL_Node.h>
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.
TAO_PSDL_Case::TAO_PSDL_Case | ( | TAO_PSDL_Node * | case_label, | |
TAO_PSDL_Node * | element_spec | |||
) |
****************************************************************
Definition at line 2840 of file PSDL_Node.cpp.
: case_label_ (case_label), element_spec_ (element_spec) { }
TAO_PSDL_Case::~TAO_PSDL_Case | ( | void | ) | [virtual] |
Definition at line 2847 of file PSDL_Node.cpp.
{ delete this->case_label_; delete this->element_spec_; }
int TAO_PSDL_Case::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2868 of file PSDL_Node.cpp.
{ return visitor->visit_case_case (this); }
TAO_PSDL_Node * TAO_PSDL_Case::case_label | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Case::element_spec | ( | void | ) | const |
Definition at line 2861 of file PSDL_Node.cpp.
{ return this->element_spec_; }
TAO_PSDL_Node* TAO_PSDL_Case::case_label_ [private] |
The values.
Definition at line 1858 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Case::element_spec_ [private] |
Definition at line 1859 of file PSDL_Node.h.