Public Member Functions | Private Attributes

TAO_PSDL_Raises_Expr Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Raises_Expr (TAO_PSDL_Node *first_scoped_name)
 ****************************************************************
 TAO_PSDL_Raises_Expr (TAO_PSDL_Node *first_scoped_name, TAO_PSDL_Node *second_scoped_name)
virtual ~TAO_PSDL_Raises_Expr (void)
TAO_PSDL_Nodefirst_scoped_name (void) const
 Get the value.
TAO_PSDL_Nodesecond_scoped_name (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodefirst_scoped_name_
 The values.
TAO_PSDL_Nodesecond_scoped_name_

Detailed Description

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

Definition at line 2374 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Raises_Expr::TAO_PSDL_Raises_Expr ( TAO_PSDL_Node first_scoped_name  ) 

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

Definition at line 3732 of file PSDL_Node.cpp.

  : first_scoped_name_ (first_scoped_name),
    second_scoped_name_ (0)
{
  this->psdl_scope_visitor ()->visit_raises_expr (this);

  this->set_identifier ("raises_exception");
}

TAO_PSDL_Raises_Expr::TAO_PSDL_Raises_Expr ( TAO_PSDL_Node first_scoped_name,
TAO_PSDL_Node second_scoped_name 
)

Definition at line 3741 of file PSDL_Node.cpp.

  : first_scoped_name_ (first_scoped_name),
    second_scoped_name_ (second_scoped_name)
{
  this->set_identifier ("raises_exception");

  this->psdl_scope_visitor ()->visit_raises_expr (this);
}

TAO_PSDL_Raises_Expr::~TAO_PSDL_Raises_Expr ( void   )  [virtual]

Definition at line 3751 of file PSDL_Node.cpp.

{
  delete this->first_scoped_name_;

  if (this->second_scoped_name_ != 0)
    delete this->second_scoped_name_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 3774 of file PSDL_Node.cpp.

{
  return visitor->visit_raises_expr (this);
}

TAO_PSDL_Node * TAO_PSDL_Raises_Expr::first_scoped_name ( void   )  const

Get the value.

Definition at line 3761 of file PSDL_Node.cpp.

{
  return this->first_scoped_name_;
}

TAO_PSDL_Node * TAO_PSDL_Raises_Expr::second_scoped_name ( void   )  const

Definition at line 3767 of file PSDL_Node.cpp.

{
  return this->second_scoped_name_;
}


Member Data Documentation

The values.

Definition at line 2394 of file PSDL_Node.h.

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