**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Element_Spec (TAO_PSDL_Node *type_spec, TAO_PSDL_Node *declarator) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Element_Spec (void) |
TAO_PSDL_Node * | type_spec (void) const |
Get the value. | |
TAO_PSDL_Node * | declarator (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_spec_ |
The values. | |
TAO_PSDL_Node * | declarator_ |
****************************************************************
Definition at line 1896 of file PSDL_Node.h.
TAO_PSDL_Element_Spec::TAO_PSDL_Element_Spec | ( | TAO_PSDL_Node * | type_spec, | |
TAO_PSDL_Node * | declarator | |||
) |
****************************************************************
Definition at line 2935 of file PSDL_Node.cpp.
: type_spec_ (type_spec), declarator_ (declarator) { }
TAO_PSDL_Element_Spec::~TAO_PSDL_Element_Spec | ( | void | ) | [virtual] |
Definition at line 2942 of file PSDL_Node.cpp.
{ delete this->type_spec_; delete this->declarator_; }
int TAO_PSDL_Element_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2963 of file PSDL_Node.cpp.
{ return visitor->visit_element_spec (this); }
TAO_PSDL_Node * TAO_PSDL_Element_Spec::declarator | ( | void | ) | const |
Definition at line 2956 of file PSDL_Node.cpp.
{ return this->declarator_; }
TAO_PSDL_Node * TAO_PSDL_Element_Spec::type_spec | ( | void | ) | const |
TAO_PSDL_Node* TAO_PSDL_Element_Spec::declarator_ [private] |
Definition at line 1915 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Element_Spec::type_spec_ [private] |
The values.
Definition at line 1914 of file PSDL_Node.h.