#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.
|
****************************************************************
Definition at line 3784 of file PSDL_Node.cpp.
03785 : string_literal_ (string_literal) 03786 { 03787 } |
|
Definition at line 3789 of file PSDL_Node.cpp. References string_literal_.
03790 { 03791 delete this->string_literal_; 03792 } |
|
= 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 } |
|
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(). |