Public Member Functions | Private Attributes

TAO_PSDL_Const_Exp Class Reference

**************************************************************** More...

#include <PSDL_Node.h>

Inheritance diagram for TAO_PSDL_Const_Exp:
Inheritance graph
[legend]
Collaboration diagram for TAO_PSDL_Const_Exp:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 TAO_PSDL_Const_Exp (TAO_PSDL_Node *expr)
 ****************************************************************
virtual ~TAO_PSDL_Const_Exp (void)
TAO_PSDL_Nodeexpr (void) const
 Get the value.
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeexpr_
 The values.

Detailed Description

****************************************************************

Definition at line 1968 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Const_Exp::TAO_PSDL_Const_Exp ( TAO_PSDL_Node expr  ) 

****************************************************************

Definition at line 3049 of file PSDL_Node.cpp.

  : expr_ (expr)
{
}

TAO_PSDL_Const_Exp::~TAO_PSDL_Const_Exp ( void   )  [virtual]

Definition at line 3054 of file PSDL_Node.cpp.

{
  delete this->expr_;
}


Member Function Documentation

int TAO_PSDL_Const_Exp::accept ( TAO_PSDL_Node_Visitor visitor  )  [virtual]

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 3068 of file PSDL_Node.cpp.

{
  return visitor->visit_const_exp (this);
}

TAO_PSDL_Node * TAO_PSDL_Const_Exp::expr ( void   )  const

Get the value.

Definition at line 3061 of file PSDL_Node.cpp.

{
  return this->expr_;
}


Member Data Documentation

The values.

Definition at line 1984 of file PSDL_Node.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines