Public Member Functions | Private Attributes

TAO_PSDL_Simple_Declarator_List Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Simple_Declarator_List (TAO_PSDL_Node *simple_declarator)
 ****************************************************************
 TAO_PSDL_Simple_Declarator_List (TAO_PSDL_Node *simple_declarator_list, TAO_PSDL_Node *simple_declarator)
virtual ~TAO_PSDL_Simple_Declarator_List (void)
TAO_PSDL_Nodesimple_declarator_list (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_Nodesimple_declarator_list_
 The values.
TAO_PSDL_Nodesimple_declarator_

Detailed Description

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

Definition at line 1615 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Simple_Declarator_List::TAO_PSDL_Simple_Declarator_List ( TAO_PSDL_Node simple_declarator  ) 

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

Definition at line 2394 of file PSDL_Node.cpp.

  : simple_declarator_list_ (0),
    simple_declarator_ (simple_declarator)
{
}

TAO_PSDL_Simple_Declarator_List::TAO_PSDL_Simple_Declarator_List ( TAO_PSDL_Node simple_declarator_list,
TAO_PSDL_Node simple_declarator 
)

Definition at line 2401 of file PSDL_Node.cpp.

  : simple_declarator_list_ (simple_declarator_list),
    simple_declarator_ (simple_declarator)
{
}

TAO_PSDL_Simple_Declarator_List::~TAO_PSDL_Simple_Declarator_List ( void   )  [virtual]

Definition at line 2409 of file PSDL_Node.cpp.

{
  if (this->simple_declarator_list_ != 0)
  delete this->simple_declarator_list_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 2433 of file PSDL_Node.cpp.

{
  return visitor->visit_simple_declarator_list  (this);
}

TAO_PSDL_Node * TAO_PSDL_Simple_Declarator_List::simple_declarator ( void   )  const

Definition at line 2426 of file PSDL_Node.cpp.

{
  return this->simple_declarator_;
}

TAO_PSDL_Node * TAO_PSDL_Simple_Declarator_List::simple_declarator_list ( void   )  const

Get the value.

Definition at line 2420 of file PSDL_Node.cpp.

{
  return this->simple_declarator_list_;
}


Member Data Documentation

Definition at line 1636 of file PSDL_Node.h.

The values.

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