Public Member Functions | Private Attributes

TAO_PSDL_Catalog Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Catalog (TAO_PSDL_Node *identifier)
 ****************************************************************
 TAO_PSDL_Catalog (TAO_PSDL_Node *identifier, TAO_PSDL_Node *catalog_inh_spec, TAO_PSDL_Node *catalog_body)
 TAO_PSDL_Catalog (TAO_PSDL_Node *identifier, TAO_PSDL_Node *catalog_body)
virtual ~TAO_PSDL_Catalog (void)
TAO_PSDL_Nodeidentifier (void) const
 Get the value.
TAO_PSDL_Nodecatalog_inh_spec (void) const
TAO_PSDL_Nodecatalog_body (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeidentifier_
 The values.
TAO_PSDL_Nodecatalog_inh_spec_
TAO_PSDL_Nodecatalog_body_

Detailed Description

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

Definition at line 690 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Catalog::TAO_PSDL_Catalog ( TAO_PSDL_Node identifier  ) 

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

Definition at line 991 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    catalog_inh_spec_ (0),
    catalog_body_ (0)
{
}

TAO_PSDL_Catalog::TAO_PSDL_Catalog ( TAO_PSDL_Node identifier,
TAO_PSDL_Node catalog_inh_spec,
TAO_PSDL_Node catalog_body 
)

Definition at line 998 of file PSDL_Node.cpp.

  :identifier_ (identifier),
   catalog_inh_spec_ (catalog_inh_spec),
   catalog_body_ (catalog_body)
{
}

TAO_PSDL_Catalog::TAO_PSDL_Catalog ( TAO_PSDL_Node identifier,
TAO_PSDL_Node catalog_body 
)

Definition at line 1007 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    catalog_inh_spec_ (0),
    catalog_body_ (catalog_body)
{
}

TAO_PSDL_Catalog::~TAO_PSDL_Catalog ( void   )  [virtual]

Definition at line 1015 of file PSDL_Node.cpp.

{
  delete this->identifier_;

  if (this->catalog_inh_spec_ != 0)
  delete this->catalog_inh_spec_;

  delete this->catalog_body_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 1046 of file PSDL_Node.cpp.

{
  return visitor->visit_catalog (this);
}

TAO_PSDL_Node * TAO_PSDL_Catalog::catalog_body ( void   )  const

Definition at line 1039 of file PSDL_Node.cpp.

{
  return this->catalog_body_;
}

TAO_PSDL_Node * TAO_PSDL_Catalog::catalog_inh_spec ( void   )  const

Definition at line 1033 of file PSDL_Node.cpp.

{
  return this->catalog_inh_spec_;
}

TAO_PSDL_Node * TAO_PSDL_Catalog::identifier ( void   )  const

Get the value.

Definition at line 1027 of file PSDL_Node.cpp.

{
  return this->identifier_;
}


Member Data Documentation

Definition at line 716 of file PSDL_Node.h.

Definition at line 715 of file PSDL_Node.h.

The values.

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