#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Abstract_Storagetype_Header (TAO_PSDL_Node *identifer) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagetype_Header (TAO_PSDL_Node *identifer, TAO_PSDL_Node *abs_storagetype_inh_spec) | |
virtual | ~TAO_PSDL_Abstract_Storagetype_Header (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | abs_storagetype_inh_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | abs_storagetype_inh_spec_ |
Definition at line 244 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagetype_Header::TAO_PSDL_Abstract_Storagetype_Header | ( | TAO_PSDL_Node * | identifer | ) |
****************************************************************
Definition at line 312 of file PSDL_Node.cpp.
: identifier_ (identifier) { }
TAO_PSDL_Abstract_Storagetype_Header::TAO_PSDL_Abstract_Storagetype_Header | ( | TAO_PSDL_Node * | identifer, | |
TAO_PSDL_Node * | abs_storagetype_inh_spec | |||
) |
Definition at line 317 of file PSDL_Node.cpp.
: identifier_ (identifier), abs_storagetype_inh_spec_ (abs_storagetype_inh_spec) { }
TAO_PSDL_Abstract_Storagetype_Header::~TAO_PSDL_Abstract_Storagetype_Header | ( | void | ) | [virtual] |
Definition at line 325 of file PSDL_Node.cpp.
{ delete this->identifier_; delete this->abs_storagetype_inh_spec_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Header::abs_storagetype_inh_spec | ( | void | ) | const |
Definition at line 338 of file PSDL_Node.cpp.
{ return this->abs_storagetype_inh_spec_; }
int TAO_PSDL_Abstract_Storagetype_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 344 of file PSDL_Node.cpp.
{ return visitor->visit_abstract_storagetype_header (this); }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Header::identifier | ( | void | ) | const |
Definition at line 264 of file PSDL_Node.h.
The values.
Definition at line 263 of file PSDL_Node.h.