Public Member Functions | Private Attributes

TAO_PSDL_Interface_Dcl Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Interface_Dcl (TAO_PSDL_Node *interface_header)
 ****************************************************************
 TAO_PSDL_Interface_Dcl (TAO_PSDL_Node *interface_header, TAO_PSDL_Node *interface_body)
virtual ~TAO_PSDL_Interface_Dcl (void)
TAO_PSDL_Nodeinterface_header (void) const
 Get the value.
TAO_PSDL_Nodeinterface_body (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeinterface_header_
 The values.
TAO_PSDL_Nodeinterface_body_

Detailed Description

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

Definition at line 2538 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Interface_Dcl::TAO_PSDL_Interface_Dcl ( TAO_PSDL_Node interface_header  ) 

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

Definition at line 3971 of file PSDL_Node.cpp.

  : interface_header_ (interface_header),
    interface_body_ (0)
{
}

TAO_PSDL_Interface_Dcl::TAO_PSDL_Interface_Dcl ( TAO_PSDL_Node interface_header,
TAO_PSDL_Node interface_body 
)

Definition at line 3978 of file PSDL_Node.cpp.

  : interface_header_ (interface_header),
    interface_body_ (interface_body)
{
}

TAO_PSDL_Interface_Dcl::~TAO_PSDL_Interface_Dcl ( void   )  [virtual]

Definition at line 3987 of file PSDL_Node.cpp.

{
  delete this->interface_header_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4010 of file PSDL_Node.cpp.

{
  return visitor->visit_interface_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Interface_Dcl::interface_body ( void   )  const

Definition at line 4003 of file PSDL_Node.cpp.

{
  return this->interface_body_;
}

TAO_PSDL_Node * TAO_PSDL_Interface_Dcl::interface_header ( void   )  const

Get the value.

Definition at line 3997 of file PSDL_Node.cpp.

{
  return this->interface_header_;
}


Member Data Documentation

Definition at line 2560 of file PSDL_Node.h.

The values.

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