**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Storagetype_Header (TAO_PSDL_Node *identifier, TAO_PSDL_Node *storagetype_inh_spec, TAO_PSDL_Node *storagetype_impl_spec) | |
**************************************************************** | |
TAO_PSDL_Storagetype_Header (TAO_PSDL_Node *identifier, TAO_PSDL_Node *storagetype_inh_spec) | |
TAO_PSDL_Storagetype_Header (TAO_PSDL_Node *identifier) | |
virtual | ~TAO_PSDL_Storagetype_Header (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | storagetype_inh_spec (void) const |
TAO_PSDL_Node * | storagetype_impl_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | storagetype_inh_spec_ |
TAO_PSDL_Node * | storagetype_impl_spec_ |
****************************************************************
Definition at line 906 of file PSDL_Node.h.
TAO_PSDL_Storagetype_Header::TAO_PSDL_Storagetype_Header | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | storagetype_inh_spec, | |||
TAO_PSDL_Node * | storagetype_impl_spec | |||
) |
****************************************************************
Definition at line 1328 of file PSDL_Node.cpp.
: identifier_ (identifier), storagetype_inh_spec_ (storagetype_inh_spec), storagetype_impl_spec_ (storagetype_impl_spec) { }
TAO_PSDL_Storagetype_Header::TAO_PSDL_Storagetype_Header | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | storagetype_inh_spec | |||
) |
Definition at line 1338 of file PSDL_Node.cpp.
: identifier_ (identifier), storagetype_inh_spec_ (storagetype_inh_spec), storagetype_impl_spec_ (0) { }
TAO_PSDL_Storagetype_Header::TAO_PSDL_Storagetype_Header | ( | TAO_PSDL_Node * | identifier | ) |
Definition at line 1347 of file PSDL_Node.cpp.
: identifier_ (identifier), storagetype_inh_spec_ (0), storagetype_impl_spec_ (0) { }
TAO_PSDL_Storagetype_Header::~TAO_PSDL_Storagetype_Header | ( | void | ) | [virtual] |
Definition at line 1355 of file PSDL_Node.cpp.
{ delete this->identifier_; if (this->storagetype_inh_spec_ != 0) delete this->storagetype_inh_spec_; if (this->storagetype_impl_spec_ != 0) delete this->storagetype_impl_spec_; }
int TAO_PSDL_Storagetype_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1386 of file PSDL_Node.cpp.
{ return visitor->visit_storagetype_header (this); }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Header::identifier | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Storagetype_Header::storagetype_impl_spec | ( | void | ) | const |
Definition at line 1379 of file PSDL_Node.cpp.
{ return this->storagetype_impl_spec_; }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Header::storagetype_inh_spec | ( | void | ) | const |
Definition at line 1373 of file PSDL_Node.cpp.
{ return this->storagetype_inh_spec_; }
The values.
Definition at line 931 of file PSDL_Node.h.
Definition at line 933 of file PSDL_Node.h.
Definition at line 932 of file PSDL_Node.h.