#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Primary_Expr:
Public Member Functions | |
TAO_PSDL_Primary_Expr (TAO_PSDL_Node *type_of_primary_expr) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Primary_Expr (void) |
TAO_PSDL_Node * | type_of_primary_expr (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_primary_expr_ |
The values. |
Definition at line 2179 of file PSDL_Node.h.
TAO_PSDL_Primary_Expr::TAO_PSDL_Primary_Expr | ( | TAO_PSDL_Node * | type_of_primary_expr | ) |
****************************************************************
Definition at line 3416 of file PSDL_Node.cpp.
03417 : type_of_primary_expr_ (type_of_primary_expr) 03418 { 03419 }
TAO_PSDL_Primary_Expr::~TAO_PSDL_Primary_Expr | ( | void | ) | [virtual] |
Definition at line 3421 of file PSDL_Node.cpp.
References type_of_primary_expr_.
03422 { 03423 delete this->type_of_primary_expr_; 03424 }
int TAO_PSDL_Primary_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3435 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_primary_expr().
03436 { 03437 return visitor->visit_primary_expr (this); 03438 }
TAO_PSDL_Node * TAO_PSDL_Primary_Expr::type_of_primary_expr | ( | void | ) | const |
Get the value.
Definition at line 3428 of file PSDL_Node.cpp.
References type_of_primary_expr_.
03429 { 03430 return this->type_of_primary_expr_; 03431 }
The values.
Definition at line 2195 of file PSDL_Node.h.
Referenced by type_of_primary_expr(), and ~TAO_PSDL_Primary_Expr().