#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Abstract_Storagetype_Header:
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 316 of file PSDL_Node.cpp.
00317 : identifier_ (identifier) 00318 { 00319 }
TAO_PSDL_Abstract_Storagetype_Header::TAO_PSDL_Abstract_Storagetype_Header | ( | TAO_PSDL_Node * | identifer, | |
TAO_PSDL_Node * | abs_storagetype_inh_spec | |||
) |
Definition at line 321 of file PSDL_Node.cpp.
00324 : identifier_ (identifier), 00325 abs_storagetype_inh_spec_ (abs_storagetype_inh_spec) 00326 { 00327 }
TAO_PSDL_Abstract_Storagetype_Header::~TAO_PSDL_Abstract_Storagetype_Header | ( | void | ) | [virtual] |
Definition at line 329 of file PSDL_Node.cpp.
References abs_storagetype_inh_spec_, and identifier_.
00330 { 00331 delete this->identifier_; 00332 delete this->abs_storagetype_inh_spec_; 00333 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Header::abs_storagetype_inh_spec | ( | void | ) | const |
Definition at line 342 of file PSDL_Node.cpp.
References abs_storagetype_inh_spec_.
00343 { 00344 return this->abs_storagetype_inh_spec_; 00345 }
int TAO_PSDL_Abstract_Storagetype_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 348 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_abstract_storagetype_header().
00349 { 00350 return visitor->visit_abstract_storagetype_header (this); 00351 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Header::identifier | ( | void | ) | const |
Get the value.
Definition at line 336 of file PSDL_Node.cpp.
References identifier_.
00337 { 00338 return this->identifier_; 00339 }
Definition at line 264 of file PSDL_Node.h.
Referenced by abs_storagetype_inh_spec(), and ~TAO_PSDL_Abstract_Storagetype_Header().
The values.
Definition at line 263 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Abstract_Storagetype_Header().