#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Abstract_Storagetype_Body:
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 355 of file PSDL_Node.cpp.
00356 : abs_storagetype_member_ (abs_storagetype_member) 00357 { 00358 }
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 360 of file PSDL_Node.cpp.
00363 : abs_storagetype_member_ (abs_storagetype_member), 00364 abs_storagetype_body_ (abs_storagetype_body) 00365 { 00366 }
TAO_PSDL_Abstract_Storagetype_Body::~TAO_PSDL_Abstract_Storagetype_Body | ( | void | ) | [virtual] |
Definition at line 368 of file PSDL_Node.cpp.
References abs_storagetype_body_, and abs_storagetype_member_.
00369 { 00370 delete this->abs_storagetype_member_; 00371 delete this->abs_storagetype_body_; 00372 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Body::abs_storagetype_body | ( | void | ) | const |
Definition at line 381 of file PSDL_Node.cpp.
References abs_storagetype_body_.
00382 { 00383 return this->abs_storagetype_body_; 00384 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Body::abs_storagetype_member | ( | void | ) | const |
Get the value.
Definition at line 375 of file PSDL_Node.cpp.
References abs_storagetype_member_.
00376 { 00377 return this->abs_storagetype_member_; 00378 }
int TAO_PSDL_Abstract_Storagetype_Body::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 387 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_abstract_storagetype_body().
00388 { 00389 return visitor->visit_abstract_storagetype_body (this); 00390 }
Definition at line 289 of file PSDL_Node.h.
Referenced by abs_storagetype_body(), and ~TAO_PSDL_Abstract_Storagetype_Body().
The values.
Definition at line 288 of file PSDL_Node.h.
Referenced by abs_storagetype_member(), and ~TAO_PSDL_Abstract_Storagetype_Body().