Public Member Functions | Private Attributes

TAO_PSDL_Key_Dcl Class Reference

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

#include <PSDL_Node.h>

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

List of all members.

Public Member Functions

 TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier, TAO_PSDL_Node *simple_declarator)
 ****************************************************************
 TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier)
virtual ~TAO_PSDL_Key_Dcl (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 664 of file PSDL_Node.h.


Constructor & Destructor Documentation

TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl ( TAO_PSDL_Node identifier,
TAO_PSDL_Node simple_declarator 
)

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

Definition at line 949 of file PSDL_Node.cpp.

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

TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl ( TAO_PSDL_Node identifier  ) 

Definition at line 956 of file PSDL_Node.cpp.

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

TAO_PSDL_Key_Dcl::~TAO_PSDL_Key_Dcl ( void   )  [virtual]

Definition at line 962 of file PSDL_Node.cpp.

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


Member Function Documentation

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

= The Node methods.

Implements TAO_PSDL_Node.

Definition at line 984 of file PSDL_Node.cpp.

{
  return visitor->visit_key_dcl (this);
}

TAO_PSDL_Node * TAO_PSDL_Key_Dcl::identifier ( void   )  const

Get the value.

Definition at line 971 of file PSDL_Node.cpp.

{
  return this->identifier_;
}

TAO_PSDL_Node * TAO_PSDL_Key_Dcl::simple_declarator ( void   )  const

Definition at line 977 of file PSDL_Node.cpp.

{
  return this->simple_declarator_;
}


Member Data Documentation

The values.

Definition at line 684 of file PSDL_Node.h.

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