Public Member Functions | Private Attributes

TAO_PSDL_Catalog_Name Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Catalog_Name (TAO_PSDL_Node *scoped_name)
 ****************************************************************
 TAO_PSDL_Catalog_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *catalog_name)
virtual ~TAO_PSDL_Catalog_Name (void)
TAO_PSDL_Nodescoped_name (void) const
 Get the value.
TAO_PSDL_Nodecatalog_name (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodescoped_name_
 The values.
TAO_PSDL_Nodecatalog_name_

Detailed Description

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

Definition at line 742 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Catalog_Name::TAO_PSDL_Catalog_Name ( TAO_PSDL_Node scoped_name  ) 

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

Definition at line 1080 of file PSDL_Node.cpp.

  : scoped_name_ (scoped_name),
    catalog_name_ (0)
{
}

TAO_PSDL_Catalog_Name::TAO_PSDL_Catalog_Name ( TAO_PSDL_Node scoped_name,
TAO_PSDL_Node catalog_name 
)

Definition at line 1086 of file PSDL_Node.cpp.

  : scoped_name_ (scoped_name),
    catalog_name_ (catalog_name)
{
}

TAO_PSDL_Catalog_Name::~TAO_PSDL_Catalog_Name ( void   )  [virtual]

Definition at line 1093 of file PSDL_Node.cpp.

{
  delete this->scoped_name_;
  if (this->catalog_name_ != 0)
    delete this->catalog_name_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 1115 of file PSDL_Node.cpp.

{
  return visitor->visit_catalog_name (this);
}

TAO_PSDL_Node * TAO_PSDL_Catalog_Name::catalog_name ( void   )  const

Definition at line 1108 of file PSDL_Node.cpp.

{
  return this->catalog_name_;
}

TAO_PSDL_Node * TAO_PSDL_Catalog_Name::scoped_name ( void   )  const

Get the value.

Definition at line 1102 of file PSDL_Node.cpp.

{
  return this->scoped_name_;
}


Member Data Documentation

Definition at line 762 of file PSDL_Node.h.

The values.

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