Public Member Functions | Private Attributes

TAO_PSDL_Declarators Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Declarators (TAO_PSDL_Node *declarator)
 ****************************************************************
 TAO_PSDL_Declarators (TAO_PSDL_Node *declarator, TAO_PSDL_Node *set_of_declarators)
virtual ~TAO_PSDL_Declarators (void)
TAO_PSDL_Nodedeclarator (void) const
 Get the value.
TAO_PSDL_Nodeset_of_declarators (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodedeclarator_
 The values.
TAO_PSDL_Nodeset_of_declarators_

Detailed Description

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

Definition at line 1543 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Declarators::TAO_PSDL_Declarators ( TAO_PSDL_Node declarator  ) 

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

Definition at line 2281 of file PSDL_Node.cpp.

  : declarator_ (declarator),
    set_of_declarators_ (0)
{
}

TAO_PSDL_Declarators::TAO_PSDL_Declarators ( TAO_PSDL_Node declarator,
TAO_PSDL_Node set_of_declarators 
)

Definition at line 2287 of file PSDL_Node.cpp.

  : declarator_ (declarator),
    set_of_declarators_ (set_of_declarators)
{
}

TAO_PSDL_Declarators::~TAO_PSDL_Declarators ( void   )  [virtual]

Definition at line 2294 of file PSDL_Node.cpp.

{
  delete this->declarator_;

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 2317 of file PSDL_Node.cpp.

{
  return visitor->visit_declarators  (this);
}

TAO_PSDL_Node * TAO_PSDL_Declarators::declarator ( void   )  const

Get the value.

Definition at line 2304 of file PSDL_Node.cpp.

{
  return this->declarator_;
}

TAO_PSDL_Node * TAO_PSDL_Declarators::set_of_declarators ( void   )  const

Definition at line 2310 of file PSDL_Node.cpp.

{
  return this->set_of_declarators_;
}


Member Data Documentation

The values.

Definition at line 1563 of file PSDL_Node.h.

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