#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Local_Op_Dcl:
Public Member Functions | |
TAO_PSDL_Local_Op_Dcl (TAO_PSDL_Node *op_type_spec, TAO_PSDL_Node *identifier, TAO_PSDL_Node *parameter_dcls, TAO_PSDL_Node *raises_expr) | |
**************************************************************** | |
TAO_PSDL_Local_Op_Dcl (TAO_PSDL_Node *op_type_spec, TAO_PSDL_Node *identifier, TAO_PSDL_Node *parameter_dcls) | |
virtual | ~TAO_PSDL_Local_Op_Dcl (void) |
TAO_PSDL_Node * | op_type_spec (void) const |
Get the value. | |
TAO_PSDL_Node * | identifier (void) const |
TAO_PSDL_Node * | parameter_dcls (void) const |
TAO_PSDL_Node * | raises_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | op_type_spec_ |
The values. | |
TAO_PSDL_Node * | identifier_ |
TAO_PSDL_Node * | parameter_dcls_ |
TAO_PSDL_Node * | raises_expr_ |
Definition at line 630 of file PSDL_Node.h.
|
****************************************************************
Definition at line 889 of file PSDL_Node.cpp.
00893 : op_type_spec_ (op_type_spec), 00894 identifier_ (identifier), 00895 parameter_dcls_ (parameter_dcls), 00896 raises_expr_ (raises_expr) 00897 { 00898 } |
|
Definition at line 900 of file PSDL_Node.cpp.
00903 : op_type_spec_ (op_type_spec), 00904 identifier_ (identifier), 00905 parameter_dcls_ (parameter_dcls), 00906 raises_expr_ (0) 00907 { 00908 } |
|
Definition at line 910 of file PSDL_Node.cpp. References op_type_spec_, parameter_dcls_, and raises_expr_.
00911 { 00912 delete this->op_type_spec_; 00913 delete this->identifier_; 00914 delete this->parameter_dcls_; 00915 if (this->raises_expr_ != 0) 00916 delete this->raises_expr_; 00917 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 946 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_local_op_dcl().
00947 { 00948 return visitor->visit_local_op_dcl (this); 00949 } |
|
Definition at line 927 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_local_op_dcl(), and Dump_Visitor::visit_local_op_dcl().
00928 { 00929 return this->identifier_; 00930 } |
|
Get the value.
Definition at line 921 of file PSDL_Node.cpp. References op_type_spec_. Referenced by TAO_PSDL_Scope_Visitor::visit_local_op_dcl(), and Dump_Visitor::visit_local_op_dcl().
00922 { 00923 return this->op_type_spec_; 00924 } |
|
Definition at line 933 of file PSDL_Node.cpp. References parameter_dcls_. Referenced by TAO_PSDL_Scope_Visitor::visit_local_op_dcl(), and Dump_Visitor::visit_local_op_dcl().
00934 { 00935 return this->parameter_dcls_; 00936 } |
|
Definition at line 939 of file PSDL_Node.cpp. References raises_expr_. Referenced by TAO_PSDL_Scope_Visitor::visit_local_op_dcl(), and Dump_Visitor::visit_local_op_dcl().
00940 { 00941 return this->raises_expr_; 00942 } |
|
Definition at line 657 of file PSDL_Node.h. |
|
The values.
Definition at line 656 of file PSDL_Node.h. Referenced by op_type_spec(), and ~TAO_PSDL_Local_Op_Dcl(). |
|
Definition at line 658 of file PSDL_Node.h. Referenced by parameter_dcls(), and ~TAO_PSDL_Local_Op_Dcl(). |
|
Definition at line 659 of file PSDL_Node.h. Referenced by raises_expr(), and ~TAO_PSDL_Local_Op_Dcl(). |