**************************************************************** More...
#include <PSDL_Node.h>
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 5100 of file PSDL_Node.cpp.
: readonly_ (readonly), param_type_spec_ (param_type_spec), simple_declarator_ (simple_declarator) { }
TAO_PSDL_Attr_Dcl::TAO_PSDL_Attr_Dcl | ( | TAO_PSDL_Node * | param_type_spec, | |
TAO_PSDL_Node * | simple_declarator | |||
) |
Definition at line 5109 of file PSDL_Node.cpp.
: readonly_ (0), param_type_spec_ (param_type_spec), simple_declarator_ (simple_declarator) { }
TAO_PSDL_Attr_Dcl::~TAO_PSDL_Attr_Dcl | ( | void | ) | [virtual] |
Definition at line 5117 of file PSDL_Node.cpp.
{ delete this->param_type_spec_; delete this->simple_declarator_; }
int TAO_PSDL_Attr_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 5145 of file PSDL_Node.cpp.
{ return visitor->visit_attr_dcl (this); }
TAO_PSDL_Node * TAO_PSDL_Attr_Dcl::param_type_spec | ( | void | ) | const |
Definition at line 5132 of file PSDL_Node.cpp.
{ return this->param_type_spec_; }
int TAO_PSDL_Attr_Dcl::readonly | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Attr_Dcl::simple_declarator | ( | void | ) | const |
Definition at line 5138 of file PSDL_Node.cpp.
{ return this->simple_declarator_; }
TAO_PSDL_Node* TAO_PSDL_Attr_Dcl::param_type_spec_ [private] |
Definition at line 3080 of file PSDL_Node.h.
int TAO_PSDL_Attr_Dcl::readonly_ [private] |
The values.
Definition at line 3079 of file PSDL_Node.h.
Definition at line 3081 of file PSDL_Node.h.