#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Context_Expr:
Public Member Functions | |
TAO_PSDL_Context_Expr (TAO_PSDL_Node *string_literal) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Context_Expr (void) |
TAO_PSDL_Node * | string_literal (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | string_literal_ |
The values. |
Definition at line 2400 of file PSDL_Node.h.
TAO_PSDL_Context_Expr::TAO_PSDL_Context_Expr | ( | TAO_PSDL_Node * | string_literal | ) |
****************************************************************
Definition at line 3784 of file PSDL_Node.cpp.
03785 : string_literal_ (string_literal) 03786 { 03787 }
TAO_PSDL_Context_Expr::~TAO_PSDL_Context_Expr | ( | void | ) | [virtual] |
Definition at line 3789 of file PSDL_Node.cpp.
References string_literal_.
03790 { 03791 delete this->string_literal_; 03792 }
int TAO_PSDL_Context_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3803 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_context_expr().
03804 { 03805 return visitor->visit_context_expr (this); 03806 }
TAO_PSDL_Node * TAO_PSDL_Context_Expr::string_literal | ( | void | ) | const |
Get the value.
Definition at line 3796 of file PSDL_Node.cpp.
References string_literal_.
Referenced by TAO_PSDL_Scope_Visitor::visit_context_expr(), and Dump_Visitor::visit_context_expr().
03797 { 03798 return this->string_literal_; 03799 }
The values.
Definition at line 2416 of file PSDL_Node.h.
Referenced by string_literal(), and ~TAO_PSDL_Context_Expr().