Public Member Functions | Private Attributes

TAO_PSDL_Switch_Body Class Reference

**************************************************************** More...

#include <PSDL_Node.h>

Inheritance diagram for TAO_PSDL_Switch_Body:
Inheritance graph
[legend]
Collaboration diagram for TAO_PSDL_Switch_Body:
Collaboration graph
[legend]

List of all members.

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_Nodeswitch_case (void) const
 Get the value.
TAO_PSDL_Nodeswitch_body (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeswitch_case_
 The values.
TAO_PSDL_Nodeswitch_body_

Detailed Description

****************************************************************

Definition at line 1814 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Switch_Body::TAO_PSDL_Switch_Body ( TAO_PSDL_Node switch_case  ) 

****************************************************************

Definition at line 2799 of file PSDL_Node.cpp.

  : switch_case_ (switch_case),
    switch_body_ (0)
{
}

TAO_PSDL_Switch_Body::TAO_PSDL_Switch_Body ( TAO_PSDL_Node switch_case,
TAO_PSDL_Node switch_body 
)

Definition at line 2805 of file PSDL_Node.cpp.

  : switch_case_ (switch_case),
    switch_body_ (switch_body)
{
}

TAO_PSDL_Switch_Body::~TAO_PSDL_Switch_Body ( void   )  [virtual]

Definition at line 2812 of file PSDL_Node.cpp.

{
  delete this->switch_case_;
  delete this->switch_body_;
}


Member Function Documentation

int TAO_PSDL_Switch_Body::accept ( TAO_PSDL_Node_Visitor visitor  )  [virtual]

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 2833 of file PSDL_Node.cpp.

{
  return visitor->visit_switch_body (this);
}

TAO_PSDL_Node * TAO_PSDL_Switch_Body::switch_body ( void   )  const

Definition at line 2826 of file PSDL_Node.cpp.

{
  return this->switch_body_;
}

TAO_PSDL_Node * TAO_PSDL_Switch_Body::switch_case ( void   )  const

Get the value.

Definition at line 2820 of file PSDL_Node.cpp.

{
  return this->switch_case_;
}


Member Data Documentation

Definition at line 1835 of file PSDL_Node.h.

The values.

Definition at line 1834 of file PSDL_Node.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines