#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Storagetype_Dcl:
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 1263 of file PSDL_Node.cpp.
01264 : storagetype_header_ (storagetype_header), 01265 storagetype_body_ (0) 01266 { 01267 }
TAO_PSDL_Storagetype_Dcl::TAO_PSDL_Storagetype_Dcl | ( | TAO_PSDL_Node * | storagetype_header, | |
TAO_PSDL_Node * | storagetype_body | |||
) |
Definition at line 1269 of file PSDL_Node.cpp.
01272 : storagetype_header_ (storagetype_header), 01273 storagetype_body_ (storagetype_body) 01274 { 01275 }
TAO_PSDL_Storagetype_Dcl::~TAO_PSDL_Storagetype_Dcl | ( | void | ) | [virtual] |
Definition at line 1277 of file PSDL_Node.cpp.
References storagetype_body_, and storagetype_header_.
01278 { 01279 delete this->storagetype_header_; 01280 if (this->storagetype_body_ != 0) 01281 delete this->storagetype_body_; 01282 }
int TAO_PSDL_Storagetype_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1299 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_storagetype_dcl().
01300 { 01301 return visitor->visit_storagetype_dcl (this); 01302 }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Dcl::storagetype_body | ( | void | ) | const |
Definition at line 1292 of file PSDL_Node.cpp.
References storagetype_body_.
01293 { 01294 return this->storagetype_body_; 01295 }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Dcl::storagetype_header | ( | void | ) | const |
Get the value.
Definition at line 1286 of file PSDL_Node.cpp.
References storagetype_header_.
01287 { 01288 return this->storagetype_header_; 01289 }
Definition at line 880 of file PSDL_Node.h.
Referenced by storagetype_body(), and ~TAO_PSDL_Storagetype_Dcl().
The values.
Definition at line 879 of file PSDL_Node.h.
Referenced by storagetype_header(), and ~TAO_PSDL_Storagetype_Dcl().