**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Store_Directive (TAO_PSDL_Node *simple_declarator, TAO_PSDL_Node *psdl_concrete_state_type, TAO_PSDL_Node *storagehome_scope) | |
**************************************************************** | |
TAO_PSDL_Store_Directive (TAO_PSDL_Node *simple_declarator, TAO_PSDL_Node *psdl_concrete_state_type) | |
virtual | ~TAO_PSDL_Store_Directive (void) |
TAO_PSDL_Node * | simple_declarator (void) const |
Get the value. | |
TAO_PSDL_Node * | psdl_concrete_state_type (void) const |
TAO_PSDL_Node * | storagehome_scope (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | simple_declarator_ |
The values. | |
TAO_PSDL_Node * | psdl_concrete_state_type_ |
TAO_PSDL_Node * | storagehome_scope_ |
****************************************************************
Definition at line 1092 of file PSDL_Node.h.
TAO_PSDL_Store_Directive::TAO_PSDL_Store_Directive | ( | TAO_PSDL_Node * | simple_declarator, | |
TAO_PSDL_Node * | psdl_concrete_state_type, | |||
TAO_PSDL_Node * | storagehome_scope | |||
) |
****************************************************************
Definition at line 1605 of file PSDL_Node.cpp.
: simple_declarator_ (simple_declarator), psdl_concrete_state_type_ (psdl_concrete_state_type), storagehome_scope_ (storagehome_scope) { }
TAO_PSDL_Store_Directive::TAO_PSDL_Store_Directive | ( | TAO_PSDL_Node * | simple_declarator, | |
TAO_PSDL_Node * | psdl_concrete_state_type | |||
) |
Definition at line 1615 of file PSDL_Node.cpp.
: simple_declarator_ (simple_declarator), psdl_concrete_state_type_ (psdl_concrete_state_type), storagehome_scope_ (0) { }
TAO_PSDL_Store_Directive::~TAO_PSDL_Store_Directive | ( | void | ) | [virtual] |
Definition at line 1624 of file PSDL_Node.cpp.
{ delete this->simple_declarator_; delete this->psdl_concrete_state_type_; if (this->storagehome_scope_ != 0) delete this->storagehome_scope_; }
int TAO_PSDL_Store_Directive::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1654 of file PSDL_Node.cpp.
{ return visitor->visit_store_directive (this); }
TAO_PSDL_Node * TAO_PSDL_Store_Directive::psdl_concrete_state_type | ( | void | ) | const |
Definition at line 1641 of file PSDL_Node.cpp.
{ return this->psdl_concrete_state_type_; }
TAO_PSDL_Node * TAO_PSDL_Store_Directive::simple_declarator | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Store_Directive::storagehome_scope | ( | void | ) | const |
Definition at line 1647 of file PSDL_Node.cpp.
{ return this->storagehome_scope_; }
Definition at line 1116 of file PSDL_Node.h.
The values.
Definition at line 1115 of file PSDL_Node.h.
Definition at line 1117 of file PSDL_Node.h.