#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Attr_Dcl:
Public Member Functions | |
TAO_PSDL_Attr_Dcl (int readonly, TAO_PSDL_Node *param_type_spec, TAO_PSDL_Node *simple_declarator) | |
**************************************************************** | |
TAO_PSDL_Attr_Dcl (TAO_PSDL_Node *param_type_spec, TAO_PSDL_Node *simple_declarator) | |
virtual | ~TAO_PSDL_Attr_Dcl (void) |
int | readonly (void) const |
Get the value. | |
TAO_PSDL_Node * | param_type_spec (void) const |
TAO_PSDL_Node * | simple_declarator (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
int | readonly_ |
The values. | |
TAO_PSDL_Node * | param_type_spec_ |
TAO_PSDL_Node * | simple_declarator_ |
Definition at line 3055 of file PSDL_Node.h.
TAO_PSDL_Attr_Dcl::TAO_PSDL_Attr_Dcl | ( | int | readonly, | |
TAO_PSDL_Node * | param_type_spec, | |||
TAO_PSDL_Node * | simple_declarator | |||
) |
****************************************************************
Definition at line 5104 of file PSDL_Node.cpp.
05107 : readonly_ (readonly), 05108 param_type_spec_ (param_type_spec), 05109 simple_declarator_ (simple_declarator) 05110 { 05111 }
TAO_PSDL_Attr_Dcl::TAO_PSDL_Attr_Dcl | ( | TAO_PSDL_Node * | param_type_spec, | |
TAO_PSDL_Node * | simple_declarator | |||
) |
Definition at line 5113 of file PSDL_Node.cpp.
05115 : readonly_ (0), 05116 param_type_spec_ (param_type_spec), 05117 simple_declarator_ (simple_declarator) 05118 { 05119 }
TAO_PSDL_Attr_Dcl::~TAO_PSDL_Attr_Dcl | ( | void | ) | [virtual] |
Definition at line 5121 of file PSDL_Node.cpp.
References param_type_spec_, and simple_declarator_.
05122 { 05123 delete this->param_type_spec_; 05124 05125 delete this->simple_declarator_; 05126 }
int TAO_PSDL_Attr_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 5149 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_attr_dcl().
05150 { 05151 return visitor->visit_attr_dcl (this); 05152 }
TAO_PSDL_Node * TAO_PSDL_Attr_Dcl::param_type_spec | ( | void | ) | const |
Definition at line 5136 of file PSDL_Node.cpp.
References param_type_spec_.
Referenced by TAO_PSDL_Scope_Visitor::visit_attr_dcl(), and Dump_Visitor::visit_attr_dcl().
05137 { 05138 return this->param_type_spec_; 05139 }
int TAO_PSDL_Attr_Dcl::readonly | ( | void | ) | const |
Get the value.
Definition at line 5130 of file PSDL_Node.cpp.
References readonly_.
Referenced by TAO_PSDL_Scope_Visitor::visit_attr_dcl(), and Dump_Visitor::visit_attr_dcl().
05131 { 05132 return this->readonly_; 05133 }
TAO_PSDL_Node * TAO_PSDL_Attr_Dcl::simple_declarator | ( | void | ) | const |
Definition at line 5142 of file PSDL_Node.cpp.
References simple_declarator_.
Referenced by TAO_PSDL_Scope_Visitor::visit_attr_dcl(), and Dump_Visitor::visit_attr_dcl().
05143 { 05144 return this->simple_declarator_; 05145 }
TAO_PSDL_Node* TAO_PSDL_Attr_Dcl::param_type_spec_ [private] |
Definition at line 3080 of file PSDL_Node.h.
Referenced by param_type_spec(), and ~TAO_PSDL_Attr_Dcl().
int TAO_PSDL_Attr_Dcl::readonly_ [private] |
Definition at line 3081 of file PSDL_Node.h.
Referenced by simple_declarator(), and ~TAO_PSDL_Attr_Dcl().