Public Member Functions | Private Attributes

TAO_PSDL_Simple_Declarator Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

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

Private Attributes

TAO_PSDL_Nodeidentifier_
 The values.
TAO_PSDL_Nodesimple_declarator_

Detailed Description

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

Definition at line 1590 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Simple_Declarator::TAO_PSDL_Simple_Declarator ( TAO_PSDL_Node identifier  ) 

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

Definition at line 2349 of file PSDL_Node.cpp.

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

TAO_PSDL_Simple_Declarator::TAO_PSDL_Simple_Declarator ( TAO_PSDL_Node identifier,
TAO_PSDL_Node simple_declarator 
)

Definition at line 2356 of file PSDL_Node.cpp.

  : identifier_ (identifier),
    simple_declarator_ (simple_declarator)
{
}

TAO_PSDL_Simple_Declarator::~TAO_PSDL_Simple_Declarator ( void   )  [virtual]

Definition at line 2364 of file PSDL_Node.cpp.

{
  delete this->identifier_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 2387 of file PSDL_Node.cpp.

{
  return visitor->visit_simple_declarator  (this);
}

TAO_PSDL_Node * TAO_PSDL_Simple_Declarator::identifier ( void   )  const

Get the value.

Definition at line 2374 of file PSDL_Node.cpp.

{
  return this->identifier_;
}

TAO_PSDL_Node * TAO_PSDL_Simple_Declarator::simple_declarator ( void   )  const

Definition at line 2380 of file PSDL_Node.cpp.

{
  return this->simple_declarator_;
}


Member Data Documentation

The values.

Definition at line 1609 of file PSDL_Node.h.

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