**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Storagetype_Dcl (TAO_PSDL_Node *storagetype_header) | |
**************************************************************** | |
TAO_PSDL_Storagetype_Dcl (TAO_PSDL_Node *storagetype_header, TAO_PSDL_Node *storagetype_body) | |
virtual | ~TAO_PSDL_Storagetype_Dcl (void) |
TAO_PSDL_Node * | storagetype_header (void) const |
Get the value. | |
TAO_PSDL_Node * | storagetype_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | storagetype_header_ |
The values. | |
TAO_PSDL_Node * | storagetype_body_ |
****************************************************************
Definition at line 859 of file PSDL_Node.h.
TAO_PSDL_Storagetype_Dcl::TAO_PSDL_Storagetype_Dcl | ( | TAO_PSDL_Node * | storagetype_header | ) |
****************************************************************
Definition at line 1259 of file PSDL_Node.cpp.
: storagetype_header_ (storagetype_header), storagetype_body_ (0) { }
TAO_PSDL_Storagetype_Dcl::TAO_PSDL_Storagetype_Dcl | ( | TAO_PSDL_Node * | storagetype_header, | |
TAO_PSDL_Node * | storagetype_body | |||
) |
Definition at line 1265 of file PSDL_Node.cpp.
: storagetype_header_ (storagetype_header), storagetype_body_ (storagetype_body) { }
TAO_PSDL_Storagetype_Dcl::~TAO_PSDL_Storagetype_Dcl | ( | void | ) | [virtual] |
Definition at line 1273 of file PSDL_Node.cpp.
{ delete this->storagetype_header_; if (this->storagetype_body_ != 0) delete this->storagetype_body_; }
int TAO_PSDL_Storagetype_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1295 of file PSDL_Node.cpp.
{ return visitor->visit_storagetype_dcl (this); }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Dcl::storagetype_body | ( | void | ) | const |
Definition at line 1288 of file PSDL_Node.cpp.
{ return this->storagetype_body_; }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Dcl::storagetype_header | ( | void | ) | const |
Definition at line 880 of file PSDL_Node.h.
The values.
Definition at line 879 of file PSDL_Node.h.