Public Member Functions | Private Attributes

TAO_PSDL_Catalog_Body Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Catalog_Body ()
 ****************************************************************
 TAO_PSDL_Catalog_Body (TAO_PSDL_Node *catalog_member)
 TAO_PSDL_Catalog_Body (TAO_PSDL_Node *catalog_member, TAO_PSDL_Node *catalog_body)
virtual ~TAO_PSDL_Catalog_Body (void)
TAO_PSDL_Nodecatalog_member (void) const
 Get the value.
TAO_PSDL_Nodecatalog_body (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodecatalog_member_
 The values.
TAO_PSDL_Nodecatalog_body_

Detailed Description

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

Definition at line 767 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body (  ) 

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

Definition at line 1122 of file PSDL_Node.cpp.

TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body ( TAO_PSDL_Node catalog_member  ) 

Definition at line 1128 of file PSDL_Node.cpp.

  : catalog_member_ (catalog_member)
{
}

TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body ( TAO_PSDL_Node catalog_member,
TAO_PSDL_Node catalog_body 
)

Definition at line 1133 of file PSDL_Node.cpp.

  : catalog_member_ (catalog_member),
    catalog_body_ (catalog_body)
{
}

TAO_PSDL_Catalog_Body::~TAO_PSDL_Catalog_Body ( void   )  [virtual]

Definition at line 1140 of file PSDL_Node.cpp.

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

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 1164 of file PSDL_Node.cpp.

{
  return visitor->visit_catalog_body (this);
}

TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_body ( void   )  const

Definition at line 1157 of file PSDL_Node.cpp.

{
  return this->catalog_body_;
}

TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_member ( void   )  const

Get the value.

Definition at line 1151 of file PSDL_Node.cpp.

{
  return this->catalog_member_;
}


Member Data Documentation

Definition at line 788 of file PSDL_Node.h.

The values.

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