#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Abstract_Storagetype_Dcl (TAO_PSDL_Node *abs_storagetype_header) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagetype_Dcl (TAO_PSDL_Node *abs_storagetype_header, TAO_PSDL_Node *abs_storagetype_body) | |
virtual | ~TAO_PSDL_Abstract_Storagetype_Dcl (void) |
TAO_PSDL_Node * | abs_storagetype_header (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_header_ |
The values. | |
TAO_PSDL_Node * | abs_storagetype_body_ |
Definition at line 197 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagetype_Dcl::TAO_PSDL_Abstract_Storagetype_Dcl | ( | TAO_PSDL_Node * | abs_storagetype_header | ) |
****************************************************************
Definition at line 245 of file PSDL_Node.cpp.
: abs_storagetype_header_ (abs_storagetype_header), abs_storagetype_body_ (0) { }
TAO_PSDL_Abstract_Storagetype_Dcl::TAO_PSDL_Abstract_Storagetype_Dcl | ( | TAO_PSDL_Node * | abs_storagetype_header, | |
TAO_PSDL_Node * | abs_storagetype_body | |||
) |
Definition at line 252 of file PSDL_Node.cpp.
: abs_storagetype_header_ (abs_storagetype_header), abs_storagetype_body_ (abs_storagetype_body) { }
TAO_PSDL_Abstract_Storagetype_Dcl::~TAO_PSDL_Abstract_Storagetype_Dcl | ( | void | ) | [virtual] |
Definition at line 260 of file PSDL_Node.cpp.
{ delete this->abs_storagetype_header_; if (this->abs_storagetype_body_ != 0) delete this->abs_storagetype_body_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Dcl::abs_storagetype_body | ( | void | ) | const |
Definition at line 274 of file PSDL_Node.cpp.
{ return this->abs_storagetype_body_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Dcl::abs_storagetype_header | ( | void | ) | const |
Get the value.
Definition at line 268 of file PSDL_Node.cpp.
{ return this->abs_storagetype_header_; }
int TAO_PSDL_Abstract_Storagetype_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 280 of file PSDL_Node.cpp.
{ return visitor->visit_abstract_storagetype_dcl (this); }
Definition at line 218 of file PSDL_Node.h.
The values.
Definition at line 217 of file PSDL_Node.h.