#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Element_Spec:
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.
|
****************************************************************
Definition at line 2939 of file PSDL_Node.cpp.
02941 : type_spec_ (type_spec), 02942 declarator_ (declarator) 02943 { 02944 } |
|
Definition at line 2946 of file PSDL_Node.cpp.
02947 { 02948 delete this->type_spec_; 02949 delete this->declarator_; 02950 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 2967 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_element_spec().
02968 { 02969 return visitor->visit_element_spec (this); 02970 } |
|
Definition at line 2960 of file PSDL_Node.cpp.
02961 { 02962 return this->declarator_; 02963 } |
|
Get the value.
Definition at line 2954 of file PSDL_Node.cpp.
02955 { 02956 return this->type_spec_; 02957 } |
|
Definition at line 1915 of file PSDL_Node.h. |
|
The values.
Definition at line 1914 of file PSDL_Node.h. |