#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_State_Member:
Public Member Functions | |
TAO_PSDL_State_Member (TAO_PSDL_Node *public_or_private, TAO_PSDL_Node *type_spec, TAO_PSDL_Node *declarators) | |
**************************************************************** | |
virtual | ~TAO_PSDL_State_Member (void) |
TAO_PSDL_Node * | public_or_private (void) const |
Get the value. | |
TAO_PSDL_Node * | type_spec (void) const |
TAO_PSDL_Node * | declarators (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | public_or_private_ |
The values. | |
TAO_PSDL_Node * | type_spec_ |
TAO_PSDL_Node * | declarators_ |
Definition at line 3147 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4894 of file PSDL_Node.cpp.
04897 : public_or_private_ (public_or_private), 04898 type_spec_ (type_spec), 04899 declarators_ (declarators) 04900 { 04901 } |
|
Definition at line 4903 of file PSDL_Node.cpp. References public_or_private_.
04904 { 04905 delete this->public_or_private_; 04906 04907 delete this->type_spec_; 04908 04909 delete this->declarators_; 04910 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4933 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_state_member().
04934 { 04935 return visitor->visit_state_member (this); 04936 } |
|
Definition at line 4926 of file PSDL_Node.cpp.
04927 { 04928 return this->declarators_; 04929 } |
|
Get the value.
Definition at line 4914 of file PSDL_Node.cpp. References public_or_private_.
04915 { 04916 return this->public_or_private_; 04917 } |
|
Definition at line 4920 of file PSDL_Node.cpp.
04921 { 04922 return this->type_spec_; 04923 } |
|
Definition at line 3176 of file PSDL_Node.h. |
|
The values.
Definition at line 3174 of file PSDL_Node.h. Referenced by public_or_private(), and ~TAO_PSDL_State_Member(). |
|
Definition at line 3175 of file PSDL_Node.h. |