Public Member Functions | Private Attributes

TAO_PSDL_Shift_Expr Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Shift_Expr (TAO_PSDL_Node *add_expr)
 ****************************************************************
 TAO_PSDL_Shift_Expr (TAO_PSDL_Node *shift_expr, TAO_PSDL_Node *type, TAO_PSDL_Node *add_expr)
virtual ~TAO_PSDL_Shift_Expr (void)
TAO_PSDL_Nodetype (void) const
 Get the value.
TAO_PSDL_Nodeadd_expr (void) const
TAO_PSDL_Nodeshift_expr (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeshift_expr_
 The values.
TAO_PSDL_Nodetype_
TAO_PSDL_Nodeadd_expr_

Detailed Description

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

Definition at line 2064 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Shift_Expr::TAO_PSDL_Shift_Expr ( TAO_PSDL_Node add_expr  ) 

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

Definition at line 3203 of file PSDL_Node.cpp.

  : shift_expr_ (0),
    type_ (0),
    add_expr_ (add_expr)
{
}

TAO_PSDL_Shift_Expr::TAO_PSDL_Shift_Expr ( TAO_PSDL_Node shift_expr,
TAO_PSDL_Node type,
TAO_PSDL_Node add_expr 
)

Definition at line 3210 of file PSDL_Node.cpp.

  : shift_expr_ (shift_expr),
    type_ (type),
    add_expr_ (add_expr)
{
}

TAO_PSDL_Shift_Expr::~TAO_PSDL_Shift_Expr ( void   )  [virtual]

Definition at line 3219 of file PSDL_Node.cpp.

{
  if (this->shift_expr_ != 0)
    delete this->shift_expr_;

  delete this->add_expr_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 3248 of file PSDL_Node.cpp.

{
  return visitor->visit_shift_expr (this);
}

TAO_PSDL_Node * TAO_PSDL_Shift_Expr::add_expr ( void   )  const

Definition at line 3235 of file PSDL_Node.cpp.

{
  return this->add_expr_;
}

TAO_PSDL_Node * TAO_PSDL_Shift_Expr::shift_expr ( void   )  const

Definition at line 3241 of file PSDL_Node.cpp.

{
  return this->shift_expr_;
}

TAO_PSDL_Node * TAO_PSDL_Shift_Expr::type ( void   )  const

Get the value.

Definition at line 3229 of file PSDL_Node.cpp.

{
  return this->type_;
}


Member Data Documentation

Definition at line 2088 of file PSDL_Node.h.

The values.

Definition at line 2086 of file PSDL_Node.h.

Reimplemented from TAO_PSDL_Node.

Definition at line 2087 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