Public Member Functions | Private Attributes

TAO_PSDL_Export_Dcl Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Export_Dcl (TAO_PSDL_Node *type_of_export_one)
 ****************************************************************
 TAO_PSDL_Export_Dcl (TAO_PSDL_Node *type_of_export_one, TAO_PSDL_Node *type_of_export_two)
virtual ~TAO_PSDL_Export_Dcl (void)
TAO_PSDL_Nodetype_of_export_one (void) const
 Get the value.
TAO_PSDL_Nodetype_of_export_two (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodetype_of_export_one_
 The values.
TAO_PSDL_Nodetype_of_export_two_

Detailed Description

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

Definition at line 2635 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Export_Dcl::TAO_PSDL_Export_Dcl ( TAO_PSDL_Node type_of_export_one  ) 

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

Definition at line 4129 of file PSDL_Node.cpp.

  : type_of_export_one_ (type_of_export_one),
    type_of_export_two_ (0)
{
}

TAO_PSDL_Export_Dcl::TAO_PSDL_Export_Dcl ( TAO_PSDL_Node type_of_export_one,
TAO_PSDL_Node type_of_export_two 
)

Definition at line 4135 of file PSDL_Node.cpp.

  : type_of_export_one_ (type_of_export_one),
    type_of_export_two_ (type_of_export_two)
{
}

TAO_PSDL_Export_Dcl::~TAO_PSDL_Export_Dcl ( void   )  [virtual]

Definition at line 4142 of file PSDL_Node.cpp.

{
  delete this->type_of_export_one_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4165 of file PSDL_Node.cpp.

{
  return visitor->visit_export_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_one ( void   )  const

Get the value.

Definition at line 4152 of file PSDL_Node.cpp.

{
  return this->type_of_export_one_;
}

TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_two ( void   )  const

Definition at line 4158 of file PSDL_Node.cpp.

{
  return this->type_of_export_two_;
}


Member Data Documentation

The values.

Definition at line 2656 of file PSDL_Node.h.

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