Public Member Functions | Private Attributes

TAO_PSDL_Init_Dcl Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

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

Private Attributes

TAO_PSDL_Nodeidentifier_
 The values.
TAO_PSDL_Nodeinit_param_decls_

Detailed Description

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

Definition at line 3182 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Init_Dcl::TAO_PSDL_Init_Dcl ( TAO_PSDL_Node identifier  ) 

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

Definition at line 4936 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    init_param_decls_ (0)
{
}

TAO_PSDL_Init_Dcl::TAO_PSDL_Init_Dcl ( TAO_PSDL_Node identifier,
TAO_PSDL_Node init_param_decls 
)

Definition at line 4942 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    init_param_decls_ (init_param_decls)
{
}

TAO_PSDL_Init_Dcl::~TAO_PSDL_Init_Dcl ( void   )  [virtual]

Definition at line 4949 of file PSDL_Node.cpp.

{
  delete this->identifier_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 4972 of file PSDL_Node.cpp.

{
  return visitor->visit_init_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Init_Dcl::identifier ( void   )  const

Get the value.

Definition at line 4959 of file PSDL_Node.cpp.

{
  return this->identifier_;
}

TAO_PSDL_Node * TAO_PSDL_Init_Dcl::init_param_decls ( void   )  const

Definition at line 4965 of file PSDL_Node.cpp.

{
  return this->init_param_decls_;
}


Member Data Documentation

The values.

Definition at line 3203 of file PSDL_Node.h.

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