Public Member Functions | Private Attributes

TAO_PSDL_Type_Declarator Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Type_Declarator (TAO_PSDL_Node *type_spec, TAO_PSDL_Node *declarators)
 ****************************************************************
virtual ~TAO_PSDL_Type_Declarator (void)
TAO_PSDL_Nodetype_spec (void) const
 Get the value.
TAO_PSDL_Nodedeclarators (void) const
int accept (TAO_PSDL_Node_Visitor *visitor)
 = The Node methods.

Private Attributes

TAO_PSDL_Nodetype_spec_
 The values.
TAO_PSDL_Nodedeclarators_

Detailed Description

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

Definition at line 1414 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Type_Declarator::TAO_PSDL_Type_Declarator ( TAO_PSDL_Node type_spec,
TAO_PSDL_Node declarators 
)

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

Definition at line 2117 of file PSDL_Node.cpp.

  : type_spec_ (type_spec),
    declarators_ (declarators)
{
}

TAO_PSDL_Type_Declarator::~TAO_PSDL_Type_Declarator ( void   )  [virtual]

Definition at line 2124 of file PSDL_Node.cpp.

{
  delete this->type_spec_;
  delete this->declarators_;
}


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 2145 of file PSDL_Node.cpp.

{
  return visitor->visit_type_declarator  (this);
}

TAO_PSDL_Node * TAO_PSDL_Type_Declarator::declarators ( void   )  const

Definition at line 2138 of file PSDL_Node.cpp.

{
  return this->declarators_;
}

TAO_PSDL_Node * TAO_PSDL_Type_Declarator::type_spec ( void   )  const

Get the value.

Definition at line 2132 of file PSDL_Node.cpp.

{
  return this->type_spec_;
}


Member Data Documentation

Definition at line 1433 of file PSDL_Node.h.

The values.

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