#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Primary_Key_Dcl:
Public Member Functions | |
TAO_PSDL_Primary_Key_Dcl () | |
**************************************************************** | |
TAO_PSDL_Primary_Key_Dcl (TAO_PSDL_Node *identifier) | |
virtual | ~TAO_PSDL_Primary_Key_Dcl (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. |
Definition at line 1339 of file PSDL_Node.h.
TAO_PSDL_Primary_Key_Dcl::TAO_PSDL_Primary_Key_Dcl | ( | ) |
****************************************************************
Definition at line 1987 of file PSDL_Node.cpp.
01988 : identifier_ (0) 01989 { 01990 }
TAO_PSDL_Primary_Key_Dcl::TAO_PSDL_Primary_Key_Dcl | ( | TAO_PSDL_Node * | identifier | ) |
TAO_PSDL_Primary_Key_Dcl::~TAO_PSDL_Primary_Key_Dcl | ( | void | ) | [virtual] |
Definition at line 1997 of file PSDL_Node.cpp.
References identifier_.
01998 { 01999 delete this->identifier_; 02000 }
int TAO_PSDL_Primary_Key_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2011 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_primary_key_dcl().
02012 { 02013 return visitor->visit_primary_key_dcl (this); 02014 }
TAO_PSDL_Node * TAO_PSDL_Primary_Key_Dcl::identifier | ( | void | ) | const |
Get the value.
Definition at line 2004 of file PSDL_Node.cpp.
References identifier_.
Referenced by TAO_PSDL_Scope_Visitor::visit_primary_key_dcl(), and Dump_Visitor::visit_primary_key_dcl().
02005 { 02006 return this->identifier_; 02007 }
The values.
Definition at line 1357 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Primary_Key_Dcl().