Public Member Functions | Private Attributes

TAO_PSDL_Scoped_Name Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Scoped_Name (TAO_PSDL_Node *identifier)
 ****************************************************************
 TAO_PSDL_Scoped_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *identifier)
virtual ~TAO_PSDL_Scoped_Name (void)
TAO_PSDL_Nodeidentifier (void) const
 Get the value.
TAO_PSDL_Nodescoped_name (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodeidentifier_
 The values.
TAO_PSDL_Nodescoped_name_

Detailed Description

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

Definition at line 2710 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Scoped_Name::TAO_PSDL_Scoped_Name ( TAO_PSDL_Node identifier  ) 

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

Definition at line 4246 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    scoped_name_ (0)
{
  this->psdl_scope_visitor ()->visit_scoped_name (this);
}

TAO_PSDL_Scoped_Name::TAO_PSDL_Scoped_Name ( TAO_PSDL_Node scoped_name,
TAO_PSDL_Node identifier 
)

Definition at line 4254 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    scoped_name_ (scoped_name)
{
  this->psdl_scope_visitor ()->visit_scoped_name (this);
}

TAO_PSDL_Scoped_Name::~TAO_PSDL_Scoped_Name ( void   )  [virtual]

Definition at line 4263 of file PSDL_Node.cpp.

{
  delete this->identifier_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4286 of file PSDL_Node.cpp.

{
  return visitor->visit_scoped_name (this);
}

TAO_PSDL_Node * TAO_PSDL_Scoped_Name::identifier ( void   )  const

Get the value.

Definition at line 4273 of file PSDL_Node.cpp.

{
  return this->identifier_;
}

TAO_PSDL_Node * TAO_PSDL_Scoped_Name::scoped_name ( void   )  const

Definition at line 4279 of file PSDL_Node.cpp.

{
  return this->scoped_name_;
}


Member Data Documentation

The values.

Definition at line 2730 of file PSDL_Node.h.

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