Public Member Functions | Private Attributes

TAO_PSDL_Forward_Dcl Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

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

Private Attributes

int type_
 The values.
TAO_PSDL_Nodeidentifier_

Detailed Description

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

Definition at line 2565 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Forward_Dcl::TAO_PSDL_Forward_Dcl ( TAO_PSDL_Node identifier  ) 

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

Definition at line 4017 of file PSDL_Node.cpp.

  : type_ (0),
    identifier_ (identifier)
{
  this->psdl_scope_visitor ()->visit_forward_dcl (this);

  TAO_PSDL_Scope::instance ()->add_interface_dcl_to_scope (this->identifiers_[0],
                         //@@ deal                         "forward_dcl",
                                                           this->psdl_scope ());
}

TAO_PSDL_Forward_Dcl::TAO_PSDL_Forward_Dcl ( int  type,
TAO_PSDL_Node identifier 
)

Definition at line 4028 of file PSDL_Node.cpp.

  : type_ (type),
    identifier_ (identifier)
{
  this->psdl_scope_visitor ()->visit_forward_dcl (this);

  TAO_PSDL_Scope::instance ()->add_interface_dcl_to_scope (this->identifiers_[0],
                                     //@@ deal             "forward_dcl",
                                                           this->psdl_scope ());

}

TAO_PSDL_Forward_Dcl::~TAO_PSDL_Forward_Dcl ( void   )  [virtual]

Definition at line 4041 of file PSDL_Node.cpp.

{
  delete this->identifier_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4061 of file PSDL_Node.cpp.

{
  return visitor->visit_forward_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Forward_Dcl::identifier ( void   )  const

Definition at line 4054 of file PSDL_Node.cpp.

{
  return this->identifier_;
}

int TAO_PSDL_Forward_Dcl::type ( void   )  const

Get the value.

Definition at line 4048 of file PSDL_Node.cpp.

{
  return this->type_;
}


Member Data Documentation

Definition at line 2587 of file PSDL_Node.h.

The values.

Reimplemented from TAO_PSDL_Node.

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