#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Abstract_Storagetype_Body (TAO_PSDL_Node *abs_storagetype_member) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagetype_Body (TAO_PSDL_Node *abs_storagetype_member, TAO_PSDL_Node *abs_storagetype_body) | |
virtual | ~TAO_PSDL_Abstract_Storagetype_Body (void) |
TAO_PSDL_Node * | abs_storagetype_member (void) const |
Get the value. | |
TAO_PSDL_Node * | abs_storagetype_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | abs_storagetype_member_ |
The values. | |
TAO_PSDL_Node * | abs_storagetype_body_ |
Definition at line 269 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagetype_Body::TAO_PSDL_Abstract_Storagetype_Body | ( | TAO_PSDL_Node * | abs_storagetype_member | ) |
****************************************************************
Definition at line 351 of file PSDL_Node.cpp.
: abs_storagetype_member_ (abs_storagetype_member) { }
TAO_PSDL_Abstract_Storagetype_Body::TAO_PSDL_Abstract_Storagetype_Body | ( | TAO_PSDL_Node * | abs_storagetype_member, | |
TAO_PSDL_Node * | abs_storagetype_body | |||
) |
Definition at line 356 of file PSDL_Node.cpp.
: abs_storagetype_member_ (abs_storagetype_member), abs_storagetype_body_ (abs_storagetype_body) { }
TAO_PSDL_Abstract_Storagetype_Body::~TAO_PSDL_Abstract_Storagetype_Body | ( | void | ) | [virtual] |
Definition at line 364 of file PSDL_Node.cpp.
{ delete this->abs_storagetype_member_; delete this->abs_storagetype_body_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Body::abs_storagetype_body | ( | void | ) | const |
Definition at line 377 of file PSDL_Node.cpp.
{ return this->abs_storagetype_body_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Body::abs_storagetype_member | ( | void | ) | const |
Get the value.
Definition at line 371 of file PSDL_Node.cpp.
{ return this->abs_storagetype_member_; }
int TAO_PSDL_Abstract_Storagetype_Body::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 383 of file PSDL_Node.cpp.
{ return visitor->visit_abstract_storagetype_body (this); }
Definition at line 289 of file PSDL_Node.h.
The values.
Definition at line 288 of file PSDL_Node.h.